main {
    margin-top: 0;
}

@media only screen and (max-width: 895px)  {
    main {
        margin-top: 75px;
    }
}


/* Banner */

.banner-container {
    position: relative;
}

.banner-container img {
    width: 100%;
    max-height: calc(100vh - 100px);
    filter: brightness(0.75);
    object-fit: cover;
    vertical-align: middle;
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.25);
}

.banner-text {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    padding: 15px;
    text-align: center;
    font-size: 35px;
    background-color: rgba(0, 0, 20, 0.5);
    color: white;
}

.quote-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 30px 0;
    color: #757575;
}

.quote {
    color: var(--theme-color);
}

@media only screen and (max-width: 800px) {
    .banner-text {
        font-size: 25px;
    }
}


/* Text */

.content-container {
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 1250px;
    margin: 50px auto 0 auto;
}

.content-container .button {
    align-self: start;
}
