@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,900');

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

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #F5F5F5;
}

.textcenter {
    text-align: center;
}

/*NAVBAR*/

header {
    background-color: #00496F;
    padding: 10px 20px;;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.menu {
    width: 30px;
}

.usuario {
    width: 35px;
}

/*ALERTA*/

main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.alerta {
    background-color: #F85959;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.textoalerta {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0px 20px;
}
.iconalerta {
    width: 40px;
}
.cruz {
    width: 15px;
}

/*MATERIAS*/

h1 {
    padding-top: 30px;
}

.materias {
    background-color: white;
    display: flex;
    flex-direction: column;
    width: 95%;
    align-items: center;
    justify-content: space-between;
    margin:  25px auto;
}
.materias h4{
    text-align: center;
    width: 100%;
    border-bottom: 1px solid;
    padding-top: 20px;
    padding-bottom: 20px
}


.mat1 {
    border-bottom: 1px solid #8f8f8f;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;   
    padding: 15px;
}
.mat2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;   
    padding: 15px;
}
 h5 {
    font-size: 15px;
}

.detalle {
    border-bottom: 1px solid #e8e8e8;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.botones {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    
}

.boton {
    text-decoration: none;
    background-color: #F85959;
    padding: 5px 15px;
    color: white;
    border-radius: 9px;
    
    
}

.flecha {
    width: 20px;
}

.icono {
    width: 30px;        
}


/*FOOTER*/


footer nav {
    background-color: white;
    padding: 15px;
    box-shadow: 0px -10px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    flex-shrink: 0;
}
nav ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

nav ul li {
    flex-grow: 1;
}

nav ul li:not(:first-child) {
    border-left: 1px solid #ACACAC; 
}

nav ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.iconfooter {
    width: 25px;
}