body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #361E70;
}
.hearts {
   margin-top: auto;
    display: flex;
  width: 20%;
}
.heart {
    width: 30px;
    height: 30px;
    margin-left: auto;
}
.question-image {
    width: 600px;
    height: 300px;
    object-fit: cover;
    margin-top: 20px;
    border-radius: 20px 20px 0px 0px; 

}
.question {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: black;
    width: 600px;
    padding: 10px 0px 10px 0px;
    background-color: white;
    border-radius: 0px 0px 20px 20px; 
    filter: drop-shadow(0 3mm 6mm black);
}

.questionhldr {
    justify-content: center;
    display: flex;
  }

  #headerLogo {
    max-height: 100%;
  margin-right: auto;
  }

.score {
    font-size: 1.2em;
   margin: 20px;
    color: white;
}

.logohldr {
    height: 100px;
    width: 80%;
    display: flex;
  }

.header {
    display: flex;
    width: 600px;
    margin: auto;
    padding-top: 40px;
  }

#scoreDisplay{
    padding: 0;
}  

#overlayText {
    font-weight: bold;
    max-width: 600px;
    padding: 20px 0px 0px 0px;
    text-align: start;
  }

#overlayImage{
    width: 600px;
    height: 300px;
    object-fit: cover;
    margin-top: 20px;
    border-radius: 20px 20px 0px 0px; 
  }

  #quizFinishedText {
    font-size: 70px;
    font-weight: bold;
  }

.options {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#option1, #option2{
    height: 40px;
    margin-top: 15px;
}

#skipButton{
    background-image: url("/imgs/skip.png");
    width: 70px;
    height: 70px;
    border-radius: 100px;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center; 
    background-color: #37E9BB;
}

.option {
    padding: 10px 20px;
    background-color: #6949FD;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.option:hover {
    background-color: #0056b3;
}

#overlay, #quizFinishedOverlay, #startScreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #361E70;
    color: #37E9BB;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#quizFinishedOverlay, #startScreen{
    background-image: url("/imgs/achtergrond.svg");
    background-color: #1F1147;
}

#overlay button, #quizFinishedOverlay button, #startScreen button {
    margin-top: 20px;
    padding: 10px 100px;
    background-color: #6949FD;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: medium;
}

#scoreboard{
    border: solid 1px #6949FD !important;
    background-color: transparent !important;
   
}

#overlay button:hover, #quizFinishedOverlay button:hover, #startScreen button:hover {
    border: solid 1px #6949FD !important;
    background-color: transparent !important;
}

.logo{
    width: 200px;
}