/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* CSS Part One */
* {
    margin: 0;
    padding: 0;
}

#page-wrap {
    height: 450px;
    width: 600px;
    margin: 0 auto;
    position: relative;
}

.quiz-overlay {
    display: none;
    color: #fff;
}

.quiz-overlay.loading {
    position: absolute;
    z-index: 999999;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    background: #000;
    display: block;
}

.quiz-subject {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 36px;
    margin: 25px 0;
    text-shadow: 1px 1px 2px #fff;
    top: 10px;
    text-align: center;
}

.quiz-description {
    font-size: 20px;
}

div.quiz-password {
    width: 100%;
    text-align: right;
}

div.start-quiz-btn {
    width: 100%;
    text-align: right;
}
button.start-quiz-btn {
    -webkit-appearance: none;
    border: none;
    margin-top: 50px
}
