*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    padding: 30px;
    
    background-color: #000;
    color: #fff;

    font-family: "Manrope";
    font-size: 16px;
}

/*Estilos del header*/

.header{
    position: fixed;

    width: calc(100% - 60px);
}

.nav__header{
    display: flex;
    gap: 60px;
    justify-content: center;

    cursor: pointer;

    @media (min-width: 768px){
        justify-content: left;
    }
}

.nav__header--element{
    font-size: 1rem;

    text-decoration: none;

    color: #fff;
}

.selected{
    font-weight: 800;

    border-top: 1.5px solid #fff;
}

/*Estilos de la portada*/

.introduction{
    width: 100%;
    height: 100vh;

    display: flex;
    gap: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.introduction__name{
    font-family: "Playfair Display";
    font-size: 80px;
    font-weight: 400;
}

.introduction__job{
    font-size: 30px;
    font-weight: 200;
    text-align: center;
}

/*Estilos de los highlights*/

.highlights__item{
    display: flex;
    flex-direction: column;
    gap: 16px;

    padding-block: 30px;

    border-top: 1.5px solid #fff;

    @media(min-width: 768px){
        flex-direction: row;
    }
}

.highlights__item--img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0; /* Evita que la imagen se encoja */
    

    @media(min-width: 768px){
        width: 300px;
        height: 200px;
    }
}

.highlights__item--title{
    width: 100%;

    @media(min-width:768px){
        width: 20%;
        flex-shrink: 0;
    }
}

.highlights__item--link{
    text-decoration: none;

    color: #fff;
}

/*Estilos del footer*/

.footer__content{
    display: flex;
    justify-content: space-between;

    padding-top: 30px;
}

.footer__line{
    display: block;
    margin-inline: auto;

    width: 30%;
    height: 1.5px;
}

