@import url("https://fonts.googleapis.com/css?family=Baloo+2");

* {
  font-family: "Baloo 2", cursive;
  color: #2078df;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  background-color: #1d1f20;
}

button {
  border-radius: 0.2rem;
  background-color: #2078df;
  color: white;
  font-size: 1.5rem;
}

h2 {
  display: block;
  font-size: 2rem;
  text-align:center;
}

#prompt {
  display: grid;
  text-align: center;
  font-size: 1.5rem;
}

button.start-game {
  display: grid;
  font-family: "Baloo 2";
  text-align:center;
  justify-self: center;
  width: 6rem;
  font-size: 1rem;
  border:0.1rem solid white;
  cursor: pointer;
}
  
button.restart { 
    display: grid;
    font-family: "Baloo 2", cursive;
    text-align:center;
    justify-self: center;
    width: 8rem;
    font-size: 1rem;
    border:0.1rem solid white;
    margin-bottom: 1rem;
    cursor: pointer;
} 

  button:hover {
    background-color: rgb(81, 0, 128);
  }
  
main {
    display:grid;
    grid-template: repeat(12, 1fr) / repeat(12, 1fr);
    width: 50rem;
    height: 50rem;
    background-color: #2078df;
    margin-bottom: 2rem;
}

.cell {
    border: 0.5px solid #65a2e9;   
}

.cell.apple {
    background-color: red;
    border-radius: 50%;
}

.cell.snake {
    background-color: greenyellow;
}

#scoreStrip {
    display:none;
    font-size: 1.5rem;
}

#message {
  position:absolute;
  top: 60vh;
  color: white;
  background-color: darkorange;
  font-size:2rem;
}
  
