* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #c9e2f2;
  margin: 0;
  height: 100vh;
}

.top_bar {
  background-color: #295c70;
  width: 100vw;
  height: 10%;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "PT Serif", serif;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 90vh;
}

.container {
  margin-top: 3rem;
  display: grid;
  grid-template-rows: repeat(3, 4.5rem);
  grid-template-columns: repeat(3, 4.5rem);
  gap: 0.5rem;
  cursor: grab;
}

.item {
  background-color: #59c5f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.level {
  margin: 4rem 4rem 0 4rem;
  font-size: 2rem;
}

h3 {
  text-align: center;
  margin: 0;
  font-size: 2rem;
}

.winCombo {
  margin: 0;
}

.winBox {
  background-color: orange !important;
}

.button_cont {
  display: flex;
  align-items: center;
  margin-left: 4rem;
}

#reset {
  margin: 0 4rem;
  background-color: #295c70;
  color: white;
  border: 0;
  border-radius: 10%;
  height: 2rem;
  width: 3rem;
}

@media (max-width: 500px) {
  .button_cont {
    flex-wrap: wrap;
  }

  #reset {
    margin-top: 2rem;
  }
}
