
  .container {
    display: flex;
    flex-direction: column;
  }
  .row {
    display: flex;
    flex: 1;
    
  }
  .column {
    flex: 50%;
    padding: 10px;
  }

  #playerCurrentAnswer{
    flex: 1;
    background-color: lightgrey;
    color: black;
    padding: 10px;
    text-align: center;
    min-width: 50px;
    max-width: 100px; 
    width: 100%;
  }

  .btn-group button, .btn-group-100 button, .btn-group-200 button, .btn-group-300 button {
    float: left;
    background-color: #012998;  
    border: 1px solid #091534;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    width: 33.3%;
    height: 100px;
    display: block;
  }

  .btn-group .categories {
    cursor: default;
  }


  h1 {
    text-align: center;
  }

  body {
    background-color: #678FFE;
    color: #091534;
  }

#h2Center {
    text-align: center;
}

#questions, .categories {
    background-color: #012998;  
    border: 1px solid #091534;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-size: 22px;
    cursor: pointer;
    width: 33.3%;
    height: 100px;
    display: block;
  }
  
  .btn-group-100 button:hover, .btn-group-200 button:hover, .btn-group-300 button:hover, .option:hover
    {
        background-color: #1a3ea2;
        color: yellow;
    }
  
  #scoreValue:disabled, #incorrectAnswers:disabled, #correctAnswers:disabled  {
    background-color: #DBE5FF;  
    border: 1px solid #091534;
    color: #091534;
    padding: 15px 30px; 
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    width: 33.3%;
    height: 100px;
    display: block;
    float: left;
  }

  #answerInput {
    background-color: white;  
    border: 1px solid #091534;
    color: #091534;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    float:left;
    display: block;
    cursor: default
  }

  #answerInputTitle {
    background-color: #012998;
    color: white;
    padding: 15px 30px;
    text-align: center;
    font-size: 18px;
    display: block;
  }

  .option {
    background-color: #012998;
    color: white;
    padding: 15px 30px;
    text-align: center;
    font-size: 18px;
    min-width: 150px;
    max-width: 150px;
    float: left;
    cursor: pointer;
  }

#answerInputElement {
  width: 50%;
  margin: auto;
}

#scoreBoard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 50%;
}

#player, #playerScore{
  flex: 1;
  max-width: 200px;
  text-align: center;
  background-color: #012998;
  color: white;
  font-size: 18px;
  padding: 15px;
}

.score-container {
  display: block;
  justify-content: space-evenly;
  align-items: center;
  padding: 15px 30px;
  width: 100%;
}

.column-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width:80%;
}

#playerScore {
  margin-top: 20px;
}