/****GENERAL****/
/***************/
@charset "utf-8";
/* CSS Document */

html, body {
    height: 100%;
    width: 100%
    font-family: sans-serif;
    color: white;
}
h1 {
    background-image: url("../images/h1.png");
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    font-family: sans-serif;
}

/******HEADER*****/
/*****************/
header {
    text-align: center;
    font-size: 5em;
    font-family: sans-serif;
}
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: rgba(50, 47, 47, 0.5);
    padding-top: 10px;
    margin: 10px;
    border:2px solid black;
    border-radius: 10px;
    font-family: sans-serif;
}
/******PRINCIPAL*****/
/********************/
.principal {
    background-attachment: fixed;
    background-image: url("../images/fondo.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

}
#datos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;

    -webkit-flex-wrap: wrap;
    flex-wrap:wrap;
}

.vertical {

    padding:5px;
    border: 1px solid white;
    background-color: rgba(50, 47, 47, 0.6);
    width: 450px;
    height:350px;
    font-family: sans-serif;
}
/******ASIGNATURAS*****/
/**********************/
.asignaturas {
    background-attachment: fixed;
    background-image: url("../images/fondo.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
#tabla {
    display: flex;
    justify-content: center;
    align-items: center;
}
table {
    padding:0px;
    margin-left: center;
    text-align: center;
    border-spacing: 0px;
    font-family: sans-serif;
    font-size: 0.8em;
    background-position: center center
    border-top-width: 1px;
    border-top-style: solid;
}
th, td {
    padding: 0.5em;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: black;
    border-radius: 10px;
}
th {
    background-color: rgba(50, 47, 47, 0.6);
}
td {
    background-color: rgba(255,255,255,0.7);
}
#fecha {
  text-align: center;
}