/* ================================
   QUIZ PAGE STYLES
   ================================ */

/* Outer page background */
body.quiz-page {
    background-image: url('../../images/image-bg-chalenge.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* Main container */
.single-page__content {
    padding: 20px;
    font-size: 18px;
}

/* Logo wrapper */
.single-page__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    width: 100%;
    text-align: center;
}

/* Logo image */
.single-page__logo img {
    max-width: 180px;
    height: auto;
    display: inline-block;
}

/* Page title */
.single-page__title {
    text-align: center;
    font-size: 32px;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #fff;
}

/* Divider */
.single-page__divider {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.3);
    margin: 20px 0 30px 0;
}

/* Container behavior */
.c-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}


/* ================================
   RESPONSIVE BREAKPOINTS
   ================================ */

/* Tablets */
@media (max-width: 1024px) {
    .single-page__title {
        font-size: 28px;
    }

    .single-page__logo img {
        max-width: 150px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .single-page__content {
        padding: 15px;
    }

    .single-page__title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .single-page__logo img {
        max-width: 130px;
    }
}
