body {
    margin: 0;

}
.quote-container {
    height: 100vh;
    width: 100%;
    background: rgba(0, 18, 25, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    padding: 48px;
    box-sizing: border-box;
    float: left;
}
.quote {
    max-width: 700px;
    min-width: 200px;
    position: relative
}
.quote-content {
    font-weight: 200;
    font-size: 30px;
    /*font-style: italic;*/
    color: #fff;
    position: relative;
    z-index: 2;
    letter-spacing: 2px;
}
.quote-author {
    font-size: 18px;
    color: yellow;
    border-top: 1px solid #93e0ff;
    padding: 16px 32px;
    margin-top: 20px;
    text-align: right;
}
.quote-container .quote-icon {
    position: absolute;
    /*left: -180px;*/
    top: -80px;
    left: -60px;
    transform: scale(1) rotateZ(5deg);
    opacity: 0.7;
    z-index: 1;
}
.quote-icon svg  {
    float: left;
    transform: rotate(180deg);
}

.quote-icon svg path {
    fill: yellow;
    opacity: 0.2;
}
.new-quote-btn {
    padding: 16px 36px;
    position: fixed;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    background: #f3f3b2;
    color: #001219;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 500ms ease;
}

.new-quote-btn:hover {
    background: #93e0ff;
}

#video-background {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -100;
    background-size: cover;
    filter: blur(5px);
    overflow: hidden;
    transform: translateX(calc((100% - 100vw) / -2));
}

@media (max-width: 900px) {
    .quote-icon {
        left: -16px;
    }
}

@media (max-width: 500px) {
    .quote-container .quote .quote-content {
        font-size: 24px;
        line-height: 1.8;
    }
}