#game {
    display: flex;
    
}

.card {
    width: 300px;
    height: 225px;
    background-color: #206000;
    border-left: solid rgb(23,60,0) 10px;
    border-right: solid rgb(10,34,0) 10px;
  border-top: solid rgb(1,75,0) 10px;
  border-bottom: solid rgb(25,34,0) 10px;
color: white;
    text-align: center;
    font-size: 80px;
    margin: 5px;
    padding: 10px;
    line-height: 120px;
}

.genre-title {
    text-align: center;
    font-size: 28px;
    padding: 5px;
    margin: 5px;
}

.app {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
}

.questions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


button {
  margin: 5px;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  background-color:rgb(75, 134, 111);
  color: white;
}

button:disabled {
  background-color: darkgray;
  color: rgb(136, 134, 134);
}

.back-button {
  margin: 20px;
  background-color: darksalmon;
}

