@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@500&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Maven Pro", sans-serif;
}

body {
  background-color: #393939;
  color: white;
}

#container {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
}

#container #button-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (250px)[3];
      grid-template-columns: repeat(3, 250px);
  gap: 15px;
}

#container #button-container button {
  height: 30px;
  margin-top: 20px;
  padding: 3px 7px;
  font-size: 17px;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 8px;
  background-color: #fb542b;
  -webkit-box-shadow: 0 3px #999;
          box-shadow: 0 3px #999;
}

#container #button-container button:hover {
  background-color: #df4d29;
}

#container #button-container button:active {
  background-color: #df4d29;
  -webkit-box-shadow: 0 1px #999;
          box-shadow: 0 1px #999;
  -webkit-transform: translate(0, 2px);
          transform: translate(0, 2px);
}

#container #cities-table {
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: #52c6ff;
  font-size: 20px;
  margin-top: 50px;
  padding: 15px 70px;
  border-radius: 6px;
  border: 4px solid #fb542b;
}

#container #cities-table:empty {
  display: none;
}
/*# sourceMappingURL=style.css.map */