* {
  box-sizing: border-box;
}

body {
  background-color: white;
  font-family: 'Jersey 10', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  --brown: #502407;
}

ul, ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

li {
  padding: 0;
  margin: 0;
  cursor: pointer; 
}

@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */ 

  /* Janky fix for buttons not supporting click events on iOS. */
  button {
    cursor: pointer;
  }
}


.menu-container
{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu
{
    gap: 20px;
    padding: 30px;
    align-items: center;
    flex-direction: column;
    border: 3px solid black;
    background-color: white;
}

.menu.menu-closed {
  display: none;
}

#level-selection-menu .level {
  background-color: white;
  border: 1px solid black;
  width: 100px;
  height: 100px;
}