/* Standard */
body {
    background: white;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    font-family: sans-serif;
    user-select: none;
    height: 100%;
}

header {
    background: #0FBCF5;
    padding: 20px;
}

main {
    max-width: 700px;
    margin: 0 auto;
}

/* SvarsAlternativ */
.svar {
    width: 75%;
    height: 70px;
    background: #0FBCF5;
    margin: 25px auto;
    cursor: pointer;
}

.svar:hover {
    background: #148ba9;
    transition: 0.3s ease;
}

.svar p {
    color: white;
    padding: 25px;
}

/* Fråga */
#fraga {
    color: black;
    font-weight: bold;
    margin-top: 15px;
    font-size: 20px;
}

.active {
    background-color: #148ba9;
    border-radius: 15px;
    transition: 0.1s ease;
}

.bild {
    width: 75%;
    height: 250px;
    background: white;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
}

/* ProgressBar Test */
#progressBackground {
    margin: 0 auto;
    margin-bottom: 15px;
    width: 50%;
    height: 15px;
    border: 3px solid #0FBCF5;
    border-radius: 10px;
}

#progress {
    height: 15px;
    background-color: #0FBCF5;
    width: 0%;
    transition: 0.5s ease;
}

/* Text */
h1 {
    margin: 0;
    color: white;
}
 
h2 {
    color: black;
}

p {
    color: white;
}

/* Knappar */
button, a {
    background: #0FBCF5;
    border: none;
    color: white;
    padding: 15px 35px;
    margin: 10px;
    margin-bottom: 35px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
    display: inline-block;
}

button:hover, a:hover {
    background: #148ba9;
    transition: 0.3s ease;
}

/* StartBild */
#startBild {
    margin: 20px;
}

#startBilden {
    width: 65%;
}

@media only screen and (min-width: 1200px) {
    #startBilden {
        width: 55%;
    }   
}

/* ProgressBar Resultat */
#FelBackground {
    margin: 0 auto;
    margin-bottom: 15px;
    width: 40%;
    height: 20px;
    background: red;
    border-radius: 10px;
}

#RattBar {
    height: 20px;
    background-color: green;
    width: 0%;
    transition: 0.5s ease;
    border-radius: 10px;
}

#resTid {
    color: #0FBCF5;
}