
@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');
/* general */

img {
    max-width: 100%;
    height: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    margin: 2em;
    text-align: center;
    background-color: #fffefd;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display:flex;
    flex-direction:column;
    justify-content: space-between;
    align-items:center;
    
}
main{
    align-items: center;
}

html{
    height: -webkit-fill-available;
}

header .botonera{
    display:flex;
    justify-content: space-between;
    align-items:center;
    margin-bottom: 2em;
}
.botonera ul {
    padding-left: 0;
    display:flex;
    margin:auto;
}
.botonera ul li {
    list-style-type: none;
    background-color: #5F9EA0;
    padding: 1em;
    width: auto;
    display: flex;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 1.5em;
    border-radius: 0.5em;
    transition: all .2s ease;
}
.botonera ul li:hover{
    background-color:#5F9EA0;
    transition: all .2s ease;
}
.botonera ul li a {
    text-decoration:none;
    color:#fffefd;
    display:flex;
    justify-content: center;
    align-items:center;
    margin-left: auto;
}
main {
    flex-grow:1;
    display:flex;
    flex-direction:column;
    width: 100%;
}

.info-materias{
    display: flex;
    flex-direction: row;
    justify-content: center;

}
.info-materias div{
    margin: 2em;
}

.tema{
    background-color: #5F9EA0;
    color: #fffefd;
    padding: 0.5em 3em;
    border-radius: 0.5em;
    display: inline-block;
    margin: 0em 0em 2em 0em;
}


h3 {
    color:#fffefd;
    list-style-type: none;
    background-color:#5F9EA0;
    border-radius: 0.5em;
    padding: 0.5em;
}

.info-catedra{
    background-color:#5F9EA0;
    padding: 1em;
    list-style-type:none;
    color:#fffefd;
    border-radius: 0.5em
}

.titulo {
    color:#5F9EA0;
    list-style-type: none;
    margin-bottom: 0.5em;
}

.texto{
    margin-top: 0.5em;
}


ul li {
    list-style-type: none;
    color:#fffefd;
    

}

footer{
    font-size: 0.7em;
    color:black;
    
}





