@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body, main {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    background: linear-gradient(90deg, rgba(107, 76, 160, 0.60) 38.1%, rgba(131, 145, 208, 0.60) 68.15%, rgba(153, 212, 255, 0.60) 97.1%), #99D4FF;
}

header {
    height: 350px;
    background-image: url('imagenes/fondo.png');
    background-size: cover;
    border-bottom-left-radius: 10%;
    border-bottom-right-radius: 10%;
}

#portada  {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10% 10%;
    
}

#menu-hamburguesa {
    display: none;
    background: linear-gradient(90deg, rgba(107, 76, 160, 0.60) 38.1%, rgba(131, 145, 208, 0.60) 68.15%, rgba(153, 212, 255, 0.60) 97.1%), #99D4FF;
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    padding: 20%;
}

#menu-hamburguesa ul{
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 25px;
   padding-top: 150%;
}

#menu-hamburguesa ul a{
    color:white;
    font-size: 1.5em;
 }

.logo {
    width: 50%;
}

.Menu {
    width: 10%;
    margin-top: 10%;
    float: right;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.subtitulo h1 {
    color: #99D4FF;
    text-align: center;
    font-size: 210%;
    margin-top: 160px;
    position: absolute;
    top: 130px;
    left:14%;
    
}

main div {
    display: flex;
    justify-content: space-around;
    margin: 20px;
    border-bottom: #3A1A70;
    align-items: center;
}

div .nombre {
    display: flex;
    align-items: center;
    color: #3A1A70;
    font-size: large;
}

div img {
    margin-left: 0%;
    width: 15%;
    height: 15%;
}

div .mas {
    color: #3A1A70;
}

div .menos {
    color: red;
}

footer {
    background-color: #3A1A70;
    border-top-right-radius: 10%;
    border-top-left-radius: 10%;
    height: 437px;
    width: 100%;
    margin-top: 50px;
    text-align: center;
}

footer h3 {
    color: #FFF;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    padding-top: 50px;
}

.redes {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 40px 0;
}

footer img:not(.redes img) {
    margin: 15px;
}
