#Hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

#Hero > img {
    width: 100%;
}

#Hero .main-text-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

#Hero .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
} 

#Hero .text-container h1 {
    font-size: var(--title-size);
    font-weight: var(--title-weight);
    line-height: var(--title-line-height);
    color: white;
    text-transform: uppercase;
} 

#Hero .text-container h4 {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1rem;
    color: var(--subtitle-color);
}

@media (max-width: 1024px) {
    #Hero > img {
        width: auto;
        height: 100vh;
    }

    #Hero .main-text-container {
        padding: 20px;
    }

    #Hero .text-container h1 {
        font-size: 8vw;
        font-weight: var(--title-weight);
        line-height: 8vw;
        color: white;
        text-transform: uppercase;
        text-align: center;
    }

    #Hero .text-container h4 {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1rem;
        color: var(--subtitle-color);
        text-align: center;
    }
}