/****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 {
    display: none;
}

/******FOOTER*****/
/*****************/

footer {
	display: none;
}

/******TABLA******/
/*****************/
#tabla {
    justify-content: center;
}
table {
    margin: 1vw auto;
    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;
}