

  
body{
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #eee;
    background-image: url(../imagenes/fondo.webp);
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: blur(10px);
}

h1, h2, h3 {
    font-family: "Playball", cursive;
    font-weight: 400;
    font-style: normal;
}
span{
    color: #6659DE;
}

@keyframes show {
    from{
        opacity: 0;
        scale:  25%;
    }

    to{
        opacity: 1;
        scale: 100%
    }
}

.imagen {
    view-timeline-name: --image;
    view-timeline-axis: block;

    animation-timeline: --image;
    animation-name: show;

    animation-range: entry 25% cover 50%;
    animation-fill-mode: both;
}



.nav__container {
    display: flex;  
    height: 140px;
    width: 100%;
    background-color: #fff;
    opacity: 90%;
    border-bottom: 1px solid #bbb;
    justify-content: space-between;
    position: sticky;
    padding-top: 24px ;
    align-items: center;
    z-index: 200;
    top: 0;
}
.nav__logo{
    flex-grow: 2;
    object-fit: contain;
    height: 180px;
    padding-bottom: 10px;
}

.nav__ul{
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.nav__ul-li {
    list-style: none;
    margin: 0px 20px;
    font-size: 23px;
    padding: 10px 12px;
}

.nav__li-a{
    text-decoration: none;
    color: #222F30;
}
.nav__li-a:hover{
    transition: 1s;
    color: #33CCCC;
}



/*galeria*/


.galeria__container{
    max-width: 1400px;
    max-height: 1900px;
    padding-top: 56px;
    display: flex;
    flex-direction: column;
    margin: auto;
    justify-content: center;
}

.galeria__imagen{
    width: 100%;
    border-radius: 8px;
    width: 1400px;
    height: 700px;
}


.galeria__h2{
    font-size: 72px;
    margin: 56px 0px 0px 0px;
    margin: auto;
    color: #6659DE;
    padding-top: 30px ;
}

.galeria__buttom-container{
    display: flex;
    padding-top: 50px;
    justify-content: space-evenly;
}

.galeria__buttom-item{
    width: 160px;
    height: 48px;
    display: flex;
    border-radius: 8px;
    border-style: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    transition: 0.3s linear;
}
.galeria__buttom-item:hover{
    transform: scale(1.1);
}

.galeria__buttom-item:first-child{
    background-color: #D90707;
}

.galeria__buttom-item:nth-child(2){
    background-color:#26BF78;
}
.galeria__buttom-item:nth-child(3){
    background-color: #8C603A;
}
.galeria__buttom-item:nth-child(4){
    background-color: #59CADE;
}

.galeria__div-container{
    display: grid;
    gap: 2rem;
    grid-template-rows: 306px;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 300px));
    padding-top: 56px;
    justify-content: center;
    
}

.galeria__div-imagen{
    object-fit: cover;
    height: 306px;
    width: 306px;
    border-radius: 12px;
}

/*galeria*/


.equipo__container{
    max-width: 1400px;
    max-height: 1900px;
    padding-top: 96px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.equipo__h3{
    font-size: 72px;
    margin: 56px 0px 0px 0px;
    margin: auto;
    color: #6659DE;
}

.equipo__div-container{
    display: grid;
    grid-auto-rows: 30em ;
    grid-template-columns: repeat(auto-fill, minmax(100px, 300px) );
    gap: 1em;
    padding-top: 56px;
    justify-content: center;
}

.equipo__div-item{
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

.equipo__div-imagen{
    object-fit: cover;
    height: 350px;
    width: 400px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.equipo__div-p-1{
    font-size: 2em;
    padding-top: 24px;
    padding-bottom: 15px;
    color: #59CADE;
}

.equipo__div-p-2{
    color: #000;
}



