/****GENERAL****/
/***************/

@charset "utf-8";

/* CSS Document */
/****************/

* {
	font-family: sans-serif;
	color: white;
}
body {
	background-attachment: fixed;
    background-image: url("../images/background.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
/******HEADER*****/
/*****************/
header {
    text-align: center;
    font-size: 5em;
}
body .cabecera {
    background-color: rgba(50, 47, 47, 0.5);
    padding-top: 10px;
    margin: 10px;
    border:2px solid black;
    border-radius: 24px;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
}
li {
    flex-grow: 1;
    text-align: center;
}
li a {
    display: block;
    background-color: rgba(255,255,255,0.7);
    text-align: center;
    margin-right: 0.1em;
    margin-left: 0.1em;
    margin-bottom: 0.1em;
    text-decoration: none;
    font-family: sans-serif;
    text-decoration-color: white;
    color:#6E6E6E;
}
li .first {
    border-bottom-left-radius:24px 24px;
}
li .last {
    border-bottom-right-radius:24px 24px;
}
a:hover {
    background-color: coral;
}
/******FOOTER*****/
/*****************/

footer {
	background-color: transparent;
    background-image: url("../images/footer.png");
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 30px;
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
}
ul {
    list-style-type: none;
    margin-right: 10px;
    padding: 0;
    display: flex;
    flex-direction: row;
}
li {
    flex-grow: 1;
    text-align: right;
}
/******TABLA******/
/*****************/
#tabla {
    justify-content: center;
}
table {
    margin: 1vw auto;
    margin-bottom: 15vh;
    text-align: center;
    font-size: 0.8em;
    border-spacing: 0px;
}
th, td {
    border-width: 1px;
    border-style: solid;
    border-color: black;
}
th {
    padding-right: 2px;
    padding-left: 2px;
    background-color: rgba(50, 47, 47, 0.6);
    border-top-width: 2px;
}
td {
    background-color: rgba(255,255,255,0.7);
    color: black;
}
table tr #first {
	border-top-left-radius: 10px;
}
table tr #last {
	border-top-right-radius: 10px;
}
table tr .f1 {
    border-left-width: 2px;
}
table tr .f2 {
    border-right-width: 2px;
}