h1 {
  color: rgb(187, 255, 203);
}

#loading-container{
    color: rgb(187, 255, 203);
}

body {
  background-color: rgb(26, 30, 23);
  margin: 0;
  height: 100vh; /* Set the body height to full viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center the content horizontally */
  align-items: center; /* Center the content vertically */
}


#size-container{
  align-items: center;
  justify-content: center;
  color: rgb(203, 255, 203);
  display: flex;
  flex-direction: column;
}

#generate-new{
    padding: 10px;
    margin: 10px;
}

#generate-new:hover {
    background-color: rgb(203, 255, 203);
}


#maze-container {
  display: grid;
  gap: 0;
  width: 250px;
  align-items: center;
  justify-content: center;
}

.row {
  display: grid;
  /*
  grid-template-rows: repeat(20, 75px);
  grid-template-columns: repeat(20, 75px);
  */
  height: 50px;
}

.cell {
  display: grid;
  background-color: rgb(110, 133, 108);
}

.start {
  background-color: red;
}

.goal {
  background-color: yellow;
}

/*
.here {
    background-color: green;
}

.next-cell {
    background-color: blue;
  }
  */


.left {
  border-left: 2px solid black;
}

.right {
  border-right: 2px solid black;
}

.up {
  border-top: 2px solid black;
}

.down {
  border-bottom: 2px solid black;
}
