* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* animation: fade 1.3s; */
}

/* startscherm */
.header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
}

.header h1 {
    animation: fade-up 1.5s;
}

.header p,
.nameInput h3,
.nameInput input,
.nameInput button {
    animation: fade 1.5s;
}

.firstMain {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1 {
    font-size: 65px;
    font-weight: 600;
}

p {
    font-weight: 300;
    font-size: 18px;
    width: 50%;
}

.nameInput {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

h3 {
    display: flex;
    justify-content: flex-start;
    font-weight: 500;
}

input {
    font-family: Open Sans, sans-serif;
    width: 300px;
    height: 60px;
    font-size: 18px;
}

.submit {
    width: 250px;
    height: 80px;
    background: #414bb2;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 22px;
}

.submit:hover {
    background: hsl(235, 47%, 38%);
    cursor: pointer;
}

/* ThemaScherm */
.teamName {
    padding: 20px;
}

.themascherm {
    padding: 25px;
    gap: 50px;
}

h6 {
    padding: 20px;
    font-weight: 400;
    font-size: 15px;
}

h2 {
    font-size: 50px;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: white;
    font-size: 25px;
}

.thema__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.thema__1,
.thema__2,
.thema__3 {
    background: #414bb2;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    cursor: pointer;
    transition: all 0.5s;
    text-decoration: none;
}

.thema__1:hover,
.thema__2:hover,
.thema__3:hover {
    background: hsl(235, 47%, 38%);
    transform: scale(1.05);
    cursor: pointer;
}

/* quizscherm */
.header2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    padding-top: 30px;

}

.quiz-section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 25px;
}

.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f24726;
    color: white;
    font-size: 45px;
    font-weight: bold;
    width: 165px;
    height: 165px;
    border-radius: 100px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.quiz-button {
    background: #414bb2;
    color: white;
    flex-wrap: wrap;
    width: 550px;
    height: 80px;
    border: none;
    font-size: 27px;
}

.quiz-button:hover {
    background: hsl(235, 47%, 33%);
    cursor: pointer;
}

.quiz-pictures {
    display: flex;
    justify-content: center;
    height: 370px;
    object-fit: cover;
}

.answers {
    display: flex;
    gap: 60px;
    list-style: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.answersInput {
    padding-top: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* eindscherm */

.eindScherm {
    overflow-y: auto;
}

.header3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    padding-top: 30px;

}

.repeatButton {
    background: #414bb2;
    color: white;
    width: 500px;
    height: 80px;
    border: none;
    font-size: 27px;
    transition: all 0.2s;
}

.repeatButton:hover {
    cursor: pointer;
    background: hsl(235, 47%, 33%);
    transform: scale(1.05);
}

.scoreBoardSection {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scoreBoard {
    font-size: 30px;
}

.scoreBoard2 {
    font-size: 40px;
    font-weight: 200;
    padding-top: 50px;
    display: flex;
    justify-content: center;
}

.highScores {
    font-size: 25px;
}

.userAnswers {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    flex-direction: column;
    align-items: center;
}

.question-section {
    border: 2px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    width: 750px;
    transition: all 0.2s;
}

.question-section:hover {
    transform: scale(1.05);
}

.question-section h3 {
    margin: 0 0 10px 0;
}

.question-section p {
    margin: 5px 0;
}

.answer {
    color: green;
}

.wrong-answer {
    color: red;
}

.show-answer {
    font-weight: bold;
    cursor: pointer;
    color: blue;
}

@keyframes fade {

    0%,
    60% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-up {
    0%,
    25% {
        opacity: 0;
        transform: translatey(180px) scale(1.6);
    }

    25%{
        opacity: 1;

    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

@media screen and (max-width:1500px) {

    /* Startscherm */
    /* Themascherm */
    .header h2 {
        font-size: 35px;
    }

    .nameInput {
        padding-top: 150px;
    }

    .thema__buttons {
        display: flex;
        flex-wrap: wrap;
    }

    .thema__1,
    .thema__2,
    .thema__3 {
        font-size: 18px;
        width: 350px;
        height: 350px;
    }

    /* Quizscherm */
}

@media screen and (max-width:1200px) {

    /* Startscherm */
    /* Themascherm */
    .header h2 {
        font-size: 35px;
    }

    .nameInput {
        padding-top: 175px;
    }

    .thema__buttons {
        display: flex;
        flex-wrap: wrap;
    }

    .thema__1,
    .thema__2,
    .thema__3 {
        font-size: 18px;
        width: 300px;
        height: 300px;
    }

    /* Quizscherm */
    .header2 {
        padding-top: 50px;
    }

    .header2 h1 {
        font-size: 55px;
    }

    .answers {
        gap: 30px;
    }

    .quiz-button {
        width: 450px;
        font-size: 22px;
    }

    .timer {
        width: 140px;
        height: 140px;
        font-size: 35px;
    }
}


@media screen and (max-width:1000px) {
    body {
        overflow-y: scroll;
        height: 100vh;
    }

    /* Startscherm */
    .header p {
        width: 100%;
    }

    /* Themascherm */
    .header h2 {
        font-size: 32px;
    }

    .nameInput {
        padding-top: 100px;
    }

    .thema__buttons {
        display: flex;
        flex-wrap: wrap;
    }

    .thema__1,
    .thema__2,
    .thema__3 {
        font-size: 18px;
        width: 225px;
        height: 225px;
    }

    /* Quizscherm */
    .header2 {
        padding-top: 50px;
    }

    .answers {
        gap: 20px;
    }

    .header2 h1 {
        font-size: 40px;
    }

    .quiz-pictures {
        width: 400px;
        height: 270px;
    }

    .quiz-button {
        width: 350px;
    }

    .timer {
        width: 120px;
        height: 120px;
        font-size: 30px;
        top: 0;
        right: 0;
    }
}


@media screen and (max-width:950px) {

    /* startscherm */
    /* themascherm */
    .header h2 {
        font-size: 32px;
    }

    .nameInput {
        padding-top: 100px;
    }

    .thema__buttons {
        display: flex;
        flex-wrap: wrap;
    }

    .thema__1,
    .thema__2,
    .thema__3 {
        font-size: 18px;
        width: 230px;
        height: 230px;
    }

    /* quizscherm */
}

@media screen and (min-width:900px) and (max-width: 1000px) {

    /* startscherm */
    /* themascherm */
    .header h2 {
        font-size: 32px;
    }

    .nameInput {
        padding-top: 175px;
    }

    .thema__buttons {
        display: flex;
        flex-wrap: wrap;
    }

    .thema__1,
    .thema__2,
    .thema__3 {
        font-size: 18px;
        width: 230px;
        height: 230px;
    }

    /* quizscherm */
}


@media screen and (min-width:700px) and (max-width:750px) {
    /* startscherm */

    /* themascherm */
    .header h2 {
        font-size: 30px;
    }

    .nameInput {
        padding-top: 100px;
    }

    .thema__buttons {
        display: flex;
        flex-wrap: wrap;
    }

    .thema__1,
    .thema__2,
    .thema__3 {
        font-size: 15px;
        width: 220px;
        height: 220px;
    }

    /* quizscherm */
    .team_name {
        position: absolute;
        top: 0;
        left: 0;
        padding: 20px;
        font-size: 20px;
    }

    .timer {
        position: absolute;
        top: 1%;
        right: 2%;
        width: 90px;
        height: 90px;
        font-size: 30px;
    }

    .header2 h1 {
        font-size: 25px;
    }

    .quiz-button {
        width: 400px;
    }

    .quiz-section {
        width: 100%;
    }
}

@media screen and (min-width: 600px) and (max-width:700px) {

    /* startscherm */
    /* themascherm */
    .header h2 {
        font-size: 30px;
    }

    .nameInput {
        padding-top: 100px;
    }

    .thema__buttons {
        display: flex;
        flex-wrap: wrap;
    }

    .thema__1,
    .thema__2,
    .thema__3 {
        font-size: 15px;
        width: 220px;
        height: 220px;
    }

    /* quizscherm */
    .team_name {
        position: absolute;
        top: 0;
        left: 0;
        padding: 20px;
        font-size: 20px;
    }

    .timer {
        position: absolute;
        top: 1%;
        right: 2%;
        width: 90px;
        height: 90px;
        font-size: 30px;
    }

    .header2 h1 {
        font-size: 25px;
    }

    .quiz-button {
        width: 400px;
    }

    .quiz-section {
        width: 100%;
    }
}

@media screen and (max-width:600px) {

    /* startscherm */
    .header h1 {
        font-size: 60px;
    }

    .nameInput h3 {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 25px;
    }

    /* themascherm */
    .header h2 {
        font-size: 40px;
    }

    .nameInput {
        padding-top: 100px;
    }

    .thema__buttons {
        display: flex;
        flex-wrap: wrap;
    }

    .thema__1,
    .thema__2,
    .thema__3 {
        font-size: 15px;
        width: 200px;
        height: 200px;
    }

    /* quischerm */
    .team_name {
        position: absolute;
        top: 0;
        left: 0;
        padding: 20px;
    }

    .timer {
        position: absolute;
        top: 1%;
        right: 2%;
        width: 65px;
        height: 65px;
        font-size: 23px;
    }

    .header2 h1 {
        font-size: 20px;
    }

    .quiz-button {
        width: 400px;
    }
}

@media screen and (min-width: 430px) and (max-width: 550px) {

    /* startscherm */
    /* themascherm */
    .header h2 {
        font-size: 25px;
    }

    .nameInput {
        padding-top: 100px;
    }

    .thema__buttons {
        display: flex;
        flex-wrap: wrap;
    }

    .thema__1,
    .thema__2,
    .thema__3 {
        font-size: 15px;
        width: 158px;
        height: 158px;
    }

    /* quizscherm */
}

@media screen and (min-width: 400px) and (max-width: 430px) {

    /* startscherm */
    /* themascherm */
    .header h2 {
        font-size: 25px;
    }

    .nameInput {
        padding-top: 40px;
    }

    .thema__buttons {
        display: flex;
        flex-wrap: wrap;
    }

    .thema__1,
    .thema__2,
    .thema__3 {
        font-size: 15px;
        width: 158px;
        height: 158px;
    }

    /* quizscherm */
}

@media screen and (max-width:400px) {

    /* startscherm */
    .header h1 {
        font-size: 50px;
    }

    .nameInput h3 {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 20px;
    }

    /* themascherm */
    .header h2 {
        font-size: 25px;
    }

    .nameInput {
        padding-top: 40px;
    }

    .thema__buttons {
        display: flex;
        flex-wrap: wrap;
    }

    .thema__1,
    .thema__2,
    .thema__3 {
        font-size: 15px;
        width: 158px;
        height: 158px;
    }

    /* quizscherm */
    .body2 {
        padding-top: 20px;
    }

    .team_name {
        position: absolute;
        top: 0;
        left: 0;
        padding-left: 15px;
        padding-top: 22px;
    }

    .timer {
        position: absolute;
        top: 0.5%;
        right: 2%;
        width: 60px;
        height: 60px;
        font-size: 21px;
    }

    .header2 h1 {
        font-size: 21px;

    }

    .quiz-pictures {
        max-width: 100%;
        object-fit: cover;
    }

    .quiz-button {
        width: 300px;
        height: 80px;
        font-size: 18px;
    }

    .answersInput {
        padding-top: 20px;
    }
}