body {
    background-image: url(bg-image.jpg);
    background-size: cover;
    background-position: center;
}

.site-container {
    height: 100vh;
    height: 100dvh;
}

.container {
    padding: 0 2rem;
    max-width: 1080px;
    margin: 0 auto;
    max-height: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero {
    position: fixed;
    top: 0;
    bottom: 0;
    padding: 0 4rem;
    background: linear-gradient(90deg,rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 79%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    text-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px, rgba(0, 0, 0, 0.1) 0px 3px 2px, rgba(0, 0, 0, 0.1) 0px 4px 8px;
}

.hero h1 {
    font-size: 3rem;
    color: #FFF;
    margin: 0;
}

.hero p {
    font-size: 1.5rem;
    color: rgba(255,255,255, 0.6);
    margin: 0;
}

@media screen and (max-width: 570px){
    .hero {
        padding: 2rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1.25rem;
    }
}
