

.raleway {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

:root {
    --negro: #141414;
    --blanco:#FFFFFF;
    --naranja: #EAC11C;
}


html {
    scroll-behavior: smooth;  /* suaviza los desplazamienos */
    font-family: "Raleway", sans-serif;
}


body {
    background-color: var(--negro);
    color: var(--blanco);
}

.contenedor {
    width: 100%;
    height: 100vh;
}

.icono {
    width: 50px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    padding-left: 20px;
    padding-top: 20px;
}
.icono:hover {
    transform: scale(1.2);
    opacity: .8;
}


.portada {
    width: 100%;
    height: 950px;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background: linear-gradient(180deg, #F9D00A, #C4992D);
}

.oveja {
    width: 40%;
    max-height: 550px;
    z-index: 1;
}

.titulo {
    width: 80%;
    height: 100px;
    font-size: 5em;
    text-align: center;
}

.subtitulo{
    width: 80%;
    font-size: 2em;
    font-weight: lighter;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 50px;

}

.flecha {
    width: 40px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
}

.contenedor_texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 200px;
    padding-top: 20px;
}
.parrafo {
    width: 50%;
    column-count: 2;
    font-size: 1.2em;
    color: lightgray;
}

.galery {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 50px;
    padding-bottom: 100px;
}

.item_galery {
    width: 450px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    overflow: hidden;
    border: solid 1px var(--naranja);
    font-weight: lighter;
    color: gray;
}

.galery_foto {
    cursor: pointer;
    opacity: .7;
    width: 450px;
    position: relative;
    transition: all .3s ease-in-out;
}

.galery_titulo {

    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 1.3em;
    color:white;
    transition: all .3s ease-in-out;
}


.pie {
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    color: lightgray;
    border-top: solid 1px var(--naranja);
}


@media only screen and (min-width:320px) and (max-width:1280px) {
   
   .portada {
      height: 700px;
      
   }

   .titulo {
       font-size: 4.5em;
   }
    .subtitulo{
        font-size: 1.8em;
        height: 30px;
    }
    .oveja {
        width: 80%;
    }

    .parrafo { width: 80%

    }



}




