#hero {
    display: flex;
    justify-content: flex-end;
    background-image: url("../images/main-background.png");
    background-size: cover;
    background-position: 38% center;
    min-height: calc(100vh - 10rem);
}

#hero h1 {
    text-align: right;
    color: white;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: .9;
    text-transform: uppercase;
}

#hero .h1-big {
    font-size: 2em;
    display: block;
}

.hero-content {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    padding-right: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .5rem 1rem;
    justify-content: right;
}

@media (min-width: 475px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-button, .cta-button:visited, .cta-button:active {
    background-color: rgba(0, 0, 0, .5);
    color: white;
    padding: 0.75rem;
    font-weight: bold;
    width: fit-content;
    font-size: clamp(0.75rem, 2.5vw, 1rem);
    border: 2px solid white;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.cta-button:hover {
    background-color: white;
    color: black;
    border: 2px solid black;
}