@import url('https://fonts.googleapis.com/css2?family=Paprika&display=swap');


body{
    margin: 0;
    padding: 0;
}

.encabezado{
    background-color: black;
    width: 100%;
    height: 120px;
    display: flex;
    flex-direction: row;
    /* flex-shrink: initial; */
    /* flex-wrap: wrap; */
    align-items: center;
    justify-content: space-around;
    /* justify-content: left; */
}

h1{
    font-family: 'Paprika', cursive;
    color: #4287f5;
}

.botonmenu{
    background-color: black;
    color: white;
    /* width: 300px; */
    width: 11em;
    height: 4em;
    border: 5px red ridge;
    border-radius: 20px;
    font-size: 16px;
    font-family: 'Paprika', cursive;
}

.botonmenu:hover{
    background-color: #4287f5;
}

.logo{
    padding-left: 20px;
}
.contenedor{
    /* width: 80%; */
    background-color: lightblue;
    display: flex;
    justify-content: space-around;
    /* justify-content:stretch; */
    flex-wrap: wrap;
    /* flex-shrink: 4; */
    /* border: 3px ridge; */
}

.alumno{
    display: flex;
    flex-wrap: wrap;
    flex-basis: 20%;
    /* justify-content:space-evenly; */
    align-items:center;
    flex-direction: column;
    border: 5px ridge black;
    border-radius: 15px;
    /* width: 180px; */
    height: 400px;
    margin-top: 60px;
    /* padding: 5px; */
    /* margin-bottom: 80px; */
    padding-top: 5px;
    font-family: 'Paprika', cursive;
    /* padding-bottom: 20px; */
    box-shadow: 10px 10px 13px 0px rgba(0,0,0,0.75);
}

#fichaAlumno{
    background-color: lightblue;
    /* border: 3px ridge red; */
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    /* flex-basis: 20%; */
    /* align-items: center; */
}

img{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    /* padding-bottom: 60px; */
    /* margin-top: 5px; */


    /* margin-bottom: -10px; */
}

.notas{
    width: 80%;
   font-size: 18px;
   font-family: 'Paprika', cursive;
}

select{
    text-align: center;
}

#ver-notas{
    width: 150px;
}

span{
    margin-left: 30px;
}

.alumno:hover{
    background-color: #4287f5;
    transition: 0.5s;
}





p{
    border-bottom: 3px ridge red;
    text-transform: capitalize;

}














@media (max-width: 1200px) {
    .alumno {
      flex-basis: 30%;
    }
}

@media (max-width: 1000px) {
    .alumno {
      flex-basis: 40%;
    }
}

@media (max-width: 600px) {
    .alumno {
      flex-basis: 60%;
    }
}