* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-image: url("./img/world-map.png");
  background-color: #cccc;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  height: 100vh;
  width: 100%;
  padding: 10px;
}

body h1 {
  margin: 10px;
  font-size: 25px;
  text-align: center;
}

body .game {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
  height: 80%;
}

body .game .country {
  border: 2px solid black;
  font-size: 35px;
  background-color: #cccc;
  opacity: 0.7;
  height: 45%;
  width: 100%;
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 5px;
}

body .game #answer-boxes {
  height: 70%;
  width: 100%;
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

body .game #answer-boxes div {
  width: 100%;
  height: 60px;
  margin: 5px 0;
}

body .game #answer-boxes div button {
  border: 2px solid black;
  font-size: 25px;
  background-color: blue;
  opacity: 0.7;
  width: inherit;
  height: inherit;
  color: white;
  margin: 0 auto;
}

@media only screen and (min-width: 400px) {
  #answer-boxes div button {
    background-color: green;
  }
}
/*# sourceMappingURL=main.css.map */