body {
    background: black; /* Make it white if you need */
    color: #fcbe24;
    padding: 0 24px;
    margin: 0;
    height: 100vh;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    
  }
  
  
  
  #board {
    display: flex;
    background-color: black;
    height: 100vh;
  }
  
  .column {
    max-width: 16.67%;
    min-width: 16.67%;
   
  }
  
  .title, .questions {
    border: 1px solid rgb(0, 0, 0);
    padding: 25px;
    font-weight: 900;
    font-family: Georgia, serif ;
    font-size: 1.2rem;
  }
  
  .questions{
    display: flex;
    flex-direction: column;
    background-color: #0c1e8b;
    color: rgb(215,187,136);
    font-weight: bolder;
    font-family: Arial, sans-serif;
    height: 60vh;
  }
  .point{
    display: block;
    text-align: center;
    font-weight: 900;
    font-style: oblique;
    font-size: 1.6rem;
    width: 100%;
    
  }
  .gamecard {
    display: flex;
    border: 3px black solid;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    align-items: center;
    align-content: center;
  }

  .gamecard.disable {
    opacity: .75;
    cursor: not-allowed;
  }
  
  .answer {
    display: none;
  }
  
  .gamecard.show .answer {
    display: block;
    text-align: center;
    font-weight: normal;
    font-family: Georgia, serif;
  }
  
  #scoreboard{
    background-color: rgb(0, 0, 0);
    color: rgb(215,187,136);
    z-index: 0;
    height: 25px;
    text-align: center;
    font-size: 23px;
  }
  #wonboard{
    background-color: rgb(0, 0, 0);
    color: #FFD700;
    z-index: 0;
    height: 100px;
    text-align: center;
    font-size: 50px;
    font-family: Georgia, serif, cursive;
  }


  #question_cover {
    width: 100%;
    height: 100%;
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0c1e8b;
    display: none;
  }

  #question_inner {
    display: flex;
    text-align: center;
    align-items: center;
    align-content: center;
    height: 100vh;
  }


  .show {
    font-size: 3rem;
    display: block !important;
    font-weight: normal;
    font-family: Georgia, serif;
    line-height: 4rem;
    width: 50%;
    margin: auto;
  }


  #question {
    display: none;
  }

  #question.show {
    cursor: pointer;
  }

  #answer {
    display: none;
  }

  #answer.show {
    cursor: pointer;
  }



  #letter {
    width: 100%;
    height: 100%;
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0c1e8b;
    display: none;
  }

  #letter > div {
    margin: auto;
    font-size: 1.6rem;
    line-height: 2.3rem;
    width: 75%;
    text-align: left;
    display: flex;
    column-gap: 3rem;
    box-sizing: border-box;

  }

  #letter.show {
    display: block;
  }
