.video-background-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
    background-color: #fdcf78;
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    opacity: 0.7;   
}

.video-wrapper video {
    pointer-events: none;
}

.content-text {
    z-index: 2;
    text-align: center;
    padding: 5% 10%;
    width: 100%;
}

.content-text h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
    letter-spacing: 20px;
    text-transform: uppercase;
    color: black;
}

.content-text .quote {
    letter-spacing: 2px;
}

.quote-author {
    display: block;
    font-style: italic;
    font-size: 0.9rem;
    color: black;
    letter-spacing: 2px;
}

/* Responsive video background  */

@media only screen and (min-aspect-ratio: 16/9) {
    .video-wrapper video {
        width: 100vw;
        height: auto;
    }
}

@media only screen and (max-aspect-ratio: 16/9) {
    .video-wrapper video {
        width: auto;
        height: 100vh;
        position: absolute;
        top: 0;
        right: 0;
    }
}

@media only screen and (max-width: 1100px) {
    .content-text {
        padding: 2% 5%; 
    }

    .content-text h3 {
        font-size: 1.5rem;
        letter-spacing: 15px;
    }

    .content-text p {
        letter-spacing: 1px;
    }
}

@media only screen and (max-width: 770px) {
    .content-text h3 {
        font-size: 1.5rem;
        letter-spacing: 10px;
    }
}

@media only screen and (max-width: 610px) {
    .content-text h3 {
        letter-spacing: 7px;
    }
}

@media only screen and (max-width: 300px) {
    .content-text h3 {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
}