*,
*::before,
*::after {
  box-sizing: border-box;
}

p {
    margin:0 0 1.5rem 0;
    line-height:1.5;
}

.btn {
    display: block;
    width: 100%;
    padding: 1rem;
    margin: 10px 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: 0.2s;
    font-size: 1.1rem;
    border:2px solid #bbb;
    line-height: 1.4;
}

.btn:hover {
    border-color: #880303;
    color:#880303;
}

.btn-primary {
    background: #1E1817;
    color: #fff;
    text-align: center;
    border: none;
    text-transform: uppercase;
    letter-spacing:1px;
    font-weight:600;
    font-size:1.2rem;
    margin:2rem 0 0 0;
}

.btn-primary:hover {
    background: #880303;
    color:#fff;
}

.btn-fb {
    background: #1877F2;
    color: #fff;
    text-align: center;
    border: none;
    margin-top: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing:1px;
}

.btn-fb:hover {
    background: #1168D8;
    color:#fff;
}

.restart {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing:1px;
}

.hidden {display:none;}

body {
    margin:0;
    background-image:url('images/bg.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    font-family: "futura-pt", sans-serif;
}
.wrap {
	margin:5% auto 0 auto;
	width:90%;
	max-width:800px;
}

.quiz-card {
    background-color:#fff;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
	padding:3rem;
	background-image:url('images/quiz_bg.jpg');
	background-position: center center;
    background-size: cover;
}

#intro {
    text-align: center;
    font-size:1.3rem;
}

h1 {
    font-size:2.3rem;
    text-align: center;
    margin:0 0 2rem 0;
    font-weight:600;
    line-height:1.2;
    color:#fff;
}

h2 {
    text-align: center;
    margin:2rem 0 4rem 0;
    font-size:1.8rem;
    font-weight:400;
    color:#fff;
}

.progress-bar {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

#question-text {
    font-size:1.5rem;
}

#result-desc {
    font-size:1.1rem;
}

#result-title {
    color:#1E1817;
    font-weight:600;
    margin:1rem 0 2rem 0;
}

.packshot {
    text-align: center;
}

.packshot img {
    width:100%;
    max-width:300px;
}

footer {
    float:left;
    width:100%;
    padding:2rem;
    background-color:#1E1817;
    color:#fff;
}

footer a {
    color:#fff;
    font-weight:600;
    text-decoration: none;
}

footer .left {
    float:left;
    width:48%;
}

footer .right {
    float:right;
    width:48%;
    text-align: right;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

@media screen and (max-width: 1000px) {
    footer .left {
        width:100%;
        text-align: center;
    }
    footer .right {
        width:100%;
        text-align: center;
        margin:1rem 0 0 0;
    }
}

@media screen and (max-width: 700px) {
    .quiz-card {
        padding:3rem 2rem;
    }
    h1 {
        font-size:2rem;
    }
    #intro {
        font-size:1.1rem;
    }
}

@media screen and (max-width: 500px) {
    .quiz-card {
        padding:2rem 1.5rem;
    }
    h2 {
	    font-size:1.2rem;
    }
}