html, body {
    margin: 0;
    background-color: #fff;
    height: 100%;

    font-family: 'Space Mono', poppins, sans-serif;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    background-color: #fff;
}


.yellow-bg {
    background-color: #F8D725;
}

.stripe {
    width: 100%;
    margin-top: 64px;
    
    background-image: url('../img/QUDO_Stripes.svg');
    background-size: auto 125%;
    background-position: center;
    background-repeat: repeat;
    
    border-top: #9B9C9C 10px solid;
    border-bottom: #9B9C9C 10px solid;
}

.qudo-sentence-container {
    display: inline-block;
    max-width: 45%;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 40px;
    padding-right: 40px;
}

.qudo-sentence-container p {
    font-size: 22px;
    line-height: 1.5;
    color: #000;
    font-weight: bold;
}

.qudo-logo {
    width: 150px;
}

.social-media-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.social-media img {
    width: 40px;
    fill: #000;
}
.social-media a {
    margin-left: 10px;
    margin-right: 10px;
}

@media(max-width: 665px) {
    .qudo-sentence-container {
        max-width: 80%;
        padding: 0 10px;
    }

    .qudo-sentence-container p {
        font-size: 18px;
    }
    
    .qudo-sentence {
        width: 100%;
    }
    
    .qudo-logo {
        width: 35%;
        margin-top: 10vh;
    }
}
