* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    max-width: 100%;
    height: auto;
    background: linear-gradient(90deg, rgba(149, 191, 243, 0.5) 0%, rgb(219, 236, 245) 100%);
}

main{
    max-width: 1200px;
    height: auto;
    margin: auto;
    padding: auto;
    justify-items: center;
    align-content: center;
}


article{
    width: 800px;
    height: auto;
    padding-left: 40px;
    padding-top: 0;
    padding-right: 40px;
    padding-bottom: 0;
    margin: 0;
}

h1 {
    color: #141415;
    font-size: 42px;
    text-align: center;
    font-family: "Source Serif Pro";
    line-height: 42px;
    margin-left: 20px;
}

article p {
    width: 100%;
    font-family: "Source Sans 3";
    font-size: 18px;
    line-height: 24px;
    text-align: justify;
}

.requisitos{
    width: 800px;
    height: auto;
    padding-left: 40px;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 20px;
    margin: 0;
    background-color: white;
    border-radius: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.507);
}

.requisitos h2 {
    font-family: "Source Sans 3";
    font-size: 26px;
    text-align: center;
    color:#4862ff;
}

.items p {
    font-family: "Source Sans 3";
    font-size: 20px;
}

.container-requisitos{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: 40px;
}

.uno {
    background-color: white;
    text-align: center;
    border-radius: 20px;
    width: 320px;
    height: 180px;
    padding-left: 20px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    margin: auto;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.507);

}

.uno img {
    width: 100px;
    margin:0;
}

.uno p {
    font-size: 16px;
    font-family: "Source Sans 3";
    padding: 0;
    margin: 0;
}

.informacion-alumnos {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "uno dos";
    gap: 40px;
    margin: 0;
    padding: 20px;
}

.info-ipfl{
    width: 100%px;
    grid-area: uno;
    margin: 0;
    padding-left: 20px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    text-align: center;
    background-color: white;
    border-radius: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.507);
}

.info-ipfl img{
    width: auto;
    height: 80px;
    margin: auto;
    padding: auto;
    border-radius: 20px;
}

.info-ipfl p{
    height: 80px;
    font-family: "Source Sans 3";
    font-size: 14px;
    line-height: 16px;
    text-align: justify;
    margin-top: 20px;
}

.info-becas{
    width: 100%px;
    grid-area: dos;
    margin: 0;
    padding-left: 20px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    text-align: center;
    background-color: white;
    border-radius: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.507);
}

.info-becas img{
    width: auto;
    height: 80px;
    margin: auto;
    padding: auto;
    border-radius: 20px;
}

.info-becas p{
    height: 80px;
    font-family: "Source Sans 3";
    font-size: 14px;
    line-height: 16px;
    text-align: justify;
    margin-top: 20px;
}

.hide{
    display:none;
}
/* CAMBIO DE IMAGEN*/
.imagen_hover:hover img:first-child{
    transform: scale(1.05);
    display:none;
}
.imagen_hover:hover img:last-child{
    display:inline-block;
}

.enlace{
    width: 120px;
    height: 40px;
    display: flex;
    margin: 0;
    padding: 0;
    border-radius: 20px;
    background-color: #7675d1;
    color: white;
    justify-self: right;
    align-items: center;
    text-decoration: none;
    font-family: "Source Sans 3";
    font-weight: normal;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.507);
}

.enlace img{
    width: auto;
    height: 30px;
    margin: 5px;
    padding: 0;
}

.enlace:hover{
    background-color: #ffac47;
}

