/* HOME PAGE */

.content--home {
    align-items: center;
}

.intro {
    display: flex;
    min-width: 40rem;
}

.text-wrapper {
    margin-top: 8%;
    margin-left: -95%;
    margin-bottom: 15%;
}

.headline h1 {
    margin-bottom: 4rem;
}

.intro img {
    width: 100%;
    height: 100%;
    max-height: 900px;
    object-fit: cover;
}

.intro .headline {
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    padding: 4rem;
    margin-left: 3rem;
}

.headline p, .headline a {
    font-family: 'MerithHandwriting', sans-serif;
    font-style: italic;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 300;
    max-width: 25rem;
}

.headline a {
    text-decoration-color: var(--text-decoration-green);
}
.headline a:hover {
    color: var(--text-decoration-green);
}

@media only screen and (max-width: 930px) {
    .intro .headline {
        width: 100%;
        padding: 2rem;
    }
    .text-wrapper {
        width: 50%;
        margin-top: 15%;
    }
}
@media only screen and (max-width: 750px) {
    .intro .headline {
        width: 100%;
        padding: 2rem;
    }
    .text-wrapper {
        width: 50%;
        margin-left: -90%;
        margin-top: 15%;
    }
}

@media only screen and (max-width: 640px) {
    .intro img {
        margin: 2rem;
        max-width: 90%;
    }

}