* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: #ffffff;
    font-family: sans-serif;
    overflow-x: hidden;
}

html{
    scroll-padding-top: 185px;
}


    /* ---------  header --------- */
    
header {
    padding: 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1;
    transition: transform 0.3s ease;


}

header img {
    width: 130px;
}

header nav ul {
    display: flex;
    gap: 10px;
    list-style: none;
}

header a{
    color: #ffffff;
    text-decoration: none;
}


    /* ---------  main --------- */

main {

    font-size: 17px;
    font-family: "Zalando Sans SemiExpanded", sans-serif;
}

.herotag{
    display: flex;
    align-items: end;
    gap: 6px;
    position: relative;
    z-index:1 ;
    color:rgb(170, 175, 180);
    font-size: 20px;
}


main h1{
    padding-top: 0px;
    font-size: 85px;
    text-align: left;
    position: relative;
    z-index:1 ;
}

main h2 {
    position: relative;
    z-index:1 ;
    font-size: 20px;
}

main h3 {
    font-size: 40px;
}

.big-intro {
    padding-left: 7%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.big-intro video{
    left: 0;
    top: 0;
    filter: brightness(0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;

}

.paginas{
    height: 100vh;
    padding: 5%;
}

#biografia p{
    padding-top: 2%;
}

.fotos-scroll{
    padding-top: 20px;
    display:flex;
    height: 350px;
    gap: 20px;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    

}
.fotos-scroll::-webkit-scrollbar{
    display: none;
}
.fotos-scroll img{
    height: 100%;
    width: auto;
    opacity: 80%;
}

.fotos-scroll figure{
    position: relative;
    height: 100%;
}
.fotos-scroll figcaption{
    position: absolute;
    bottom: 0;
    padding: 3%;
    text-shadow: 0px 0px 10px black;

}

/*#contacto{
    display: grid;
    grid-template-columns: 1fr 1fr;
    
}*/


#contacto h2 {
    font-size: 20px;
}


/* ---------  footer --------- */


footer {
    padding-bottom: 20px;
    text-align: center;
    font-size: 13px;
    color:rgb(170, 175, 180);
}



@media (max-width: 768px){
    /* header */
    header nav {
        display: none;
    }
    header img {
        width: 120px;
        padding-left: 5px;
    }

    /* main */
    main h1 {
        font-size: 9vw;
    }
    main h2 {
        font-size: 3vw;
        font-weight: lighter;
    }
    .big-intro {
        height: 100vh;
        padding-left: 5%;
    }
    .paginas {
    height: auto;
    min-height: 100vh;
}
    .big-intro video {
        width: 100%;
        height: 100%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    /* footer */
}