.squareDiv {

    aspect-ratio: 1/1;
    display: flex;
    flex: 1 0 calc(6.25% - 2px);
    justify-content: center;
    align-items: center;
    border-width: 5px;
    transition: all 0.3s ease;

}

.squareDiv.squareColor {

    background-color: rgb(5, 2, 20);
    border-width: 1px;
    border-color: white;
    border-style: solid;
    box-sizing: border-box;

}

.divContainer {

    display:flex;
    flex-wrap: wrap;
    gap: 2px;
    background: white;

}

.inputValue {

    display: none;
}

.restart,.changeGrid {

    font-size: 20px;
    font-family: monospace;
    color: rgb(204, 204, 204);
    background-color: rgb(33, 0, 63);
    border-radius: 10px;
    border-width: 5px;
    border-color: linear-gradient(rgb(0, 37, 2), rgb(0,99,9));
    transition: all 0.3s ease;

}

.buttonContainer {

    display: flex;
    gap: 2%;
    justify-content:center;
    transition: all 0.3s ease;

}

.restart:hover,.changeGrid:hover {

    scale:1.1;

}
.gamePlay {

    display: none;
    transition: all 1s ease;
    
}

body {

    height: 100%;
    margin: 0;
    background-color: rgb(62, 0, 121);
    transition: background-color 1s ease;

}

.loadingScreenContainer {

    display: flex;
    justify-content: center;
    align-items: center;
    height:100vh;
    margin: 0;
    flex-direction: column;
    transition: all 1s ease;
}

.titleScreen {

  color: lightblue;
  text-align: center;
  font-family: monospace;
  font-size: 50px;
  margin: 10px 0;

}

.tagline {
  font-size: 1rem;
  color: rgb(96, 211, 211);
  margin: 15px 0;
}

.startButton {

  background: linear-gradient(90deg, #a1c4fd, #c2e9fb);
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1.2rem;
  color: #333;
  transition: transform 0.3s;
  font-family: monospace;

}
.startButton:hover {

  transform: scale(1.1);
  
}
