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

html, body {
    height: 100%;
    width: 100%;
    font-family: sans-serif;
    color: white;
}
h1 {
    font-size:10vw;
    text-align: center;
    font-family: sans-serif;
    margin-top:25%;
    background-image:none;
    color: coral;
}

/******HEADER*****/
/*****************/
header {
    display: none;
}
body .cabecera {
    margin: 5%;
    margin-bottom: 40px;
    border:2px solid black;
    border-radius: 24px;
    
    width: 100%;
    left:0;
    top:0;
    position: fixed;
    background-color:rgb(255,255,255);
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
}
li {
    flex-grow: 1;
    text-align: center;
}
li a {
    font-size: 5vw;
    display: block;
    padding:8%;
    text-align: center;
    text-decoration: none;
    font-family: sans-serif;
    color:#6E6E6E;
    background-color: none;
}
a:hover {
    background-color: coral;
}
/******FOOTER********/
/********************/
footer {
    display: none;
}
/******PRINCIPAL*****/
/********************/
.principal {
    background-attachment: fixed;
    background-image: url("../images/PCB_Negro.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: 85vw;
    height:70vw;
    font-size:4vw;
    font-family: sans-serif;
}
/******ASIGNATURAS*****/
/**********************/
.asignaturas {
    background-attachment: fixed;
    background-image: url("../images/PCB_Negro.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
#tabla {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90vw;
}
table {
    padding:0px;
    text-align: center;
    border-spacing: 0px;
    font-family: sans-serif;
    font-size: 1em;
    background-position: center center
    border-top-width: 1px;
    border-top-style: solid;
}
th, td {
  width:80vw;
    padding: 5%;
    padding-left: 10%;
    padding-right: 10%;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: black;
    border-radius: 10px;
    font-size:6vw;
}
th {
    background-color: rgba(50, 47, 47, 0.6);
}
td {
    background-color: rgba(255,255,255,0.7);
}