/* It's better to link from the HTML side, but based on Iswavle code editor, have to import here. */

@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

main section.game {
  max-width: 1050px;
}

main section aside.boxes {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 50px;
}

main section aside div.box-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  place-items: center;
}

main section aside div.box-wrap div.box {
  width: 100%;
  min-width: 100px;
  padding-top: 100%;
  background-color: transparent;
  border: 1px solid black;
  cursor: not-allowed;
  border-radius: 8px;
}
