*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.hero{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
    background-image: url(images/bkg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    min-height: 100svh;
    padding: 2rem 1.5rem;
    text-align: center;
}

h1 {
    font-family: 'MuseoModerno', sans-serif;
    font-weight: 600;
    color: white;
    font-size: clamp(2.5rem, 8vw, 7rem);
    line-height: 1.05;
    letter-spacing: -2px;
}

h1 span{
    font-size: clamp(1.5rem, 4vw, 4rem);
    display: inline-block;
}

p {
    font-family: 'Host Grotesk', sans-serif;
    font-weight: 400;
    color: rgb(202, 202, 202);
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: clamp(2rem, 6vw, 8rem);
    max-width: 600px;
}

a{
    color: #ffffff;
}

@media (max-width: 480px){
    .hero{
        align-items: flex-start;
        text-align: left;
    }

    h1{
        font-size: 3.2rem;
    }

    h1 span{
        font-size: 1.9rem;
    }

    p {
        font-size: 1rem;
        text-align: left;
    }
}