body {
    margin: 0;
    padding: 0;
    background-color: rgb(46,46,46);
    color: rgb(255, 255, 255);
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: DejaVu Sans Mono, monospace;
    }
  
  #game {
    display:flex;
    background-color: rgb(32,32,32);
  }

  .card {
    width: 160px;
    height: 120px;
    background-color: rgb(26,26,255);
    border-left: solid rgb(19,19,160) 10px; 
    border-right: solid rgb(11,11,91) 10px;
    border-top: solid rgb(1,61,200) 10px;
    border-bottom: solid rgb(20,20,89) 10px;
    text-align: center;
    font-size: 100px;
    margin: 5px;
    padding: 10px;
    line-height: 120px;
  }

  .first-button {
     background-color:lightgray
  }

  .second-button {
    background-color:lightgray
 }

 .third-button {
  background-color:lightgray
}

.genre-title {
  background-color: rgb(26,26,255);
  text-align: center;
  font-size: 20px;
  padding: 5px;
  margin: 5px;
}

.correct-answer {
  background-color:green
}

.wrong-answer {
  background-color:red
}