.grid {
    display: flex;
    flex-wrap: wrap;
    height: 60vmin;
    width: 60vmin; 
    /* border-style: solid; */
    /* margin: 100px; */
    /* padding-top: 1rem; */
    /* background-color: lightgray; */
    margin-bottom: -1rem;
    border: solid gray;



}



.grid div {
    height:3vmin;
    width: 3vmin;
    background-color: rgb(230, 166, 166);
}



.apple {
    background-color: purple !important;
}

.snake {
    background-color: midnightblue !important;
    z-index: 20;
}

h1{
   text-align: center;
   /* font-family: 'Titillium Web', sans-serif;
    */
  font-family: 'Amatic SC', cursive;
margin-bottom: 1rem;
   font-size: 4rem;
   margin-top: 0px;
}
body{background-color: #181818;

  font-family: 'Amatic SC', cursive;
  font-size: 1.5em;
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
    color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='152' viewBox='0 0 152 152'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='temple' fill='%23000000' fill-opacity='0.31'%3E%3Cpath d='M152 150v2H0v-2h28v-8H8v-20H0v-2h8V80h42v20h20v42H30v8h90v-8H80v-42h20V80h42v40h8V30h-8v40h-42V50H80V8h40V0h2v8h20v20h8V0h2v150zm-2 0v-28h-8v20h-20v8h28zM82 30v18h18V30H82zm20 18h20v20h18V30h-20V10H82v18h20v20zm0 2v18h18V50h-18zm20-22h18V10h-18v18zm-54 92v-18H50v18h18zm-20-18H28V82H10v38h20v20h38v-18H48v-20zm0-2V82H30v18h18zm-20 22H10v18h18v-18zm54 0v18h38v-20h20V82h-18v20h-20v20H82zm18-20H82v18h18v-18zm2-2h18V82h-18v18zm20 40v-18h18v18h-18zM30 0h-2v8H8v20H0v2h8v40h42V50h20V8H30V0zm20 48h18V30H50v18zm18-20H48v20H28v20H10V30h20V10h38v18zM30 50h18v18H30V50zm-2-40H10v18h18V10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.box{
  
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* align-items: center;
    justify-content: center; */
    flex-direction: column;
    /* align-content: space-between; */
    /* height: 75vmin; */
    width: 60vmax;
    padding-top: 1rem;
  

    /* margin: 100px; */
    /* align-items: center; */
}

  .centered{
    display: flex;
    justify-content: center;
    align-items: center;
   
  }
  #btn{
    background-color: #181818  ; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    /* font-size: 16px; */
  font-family: 'Amatic SC', cursive;
  font-size: 1.5em;
  margin-bottom: 1rem;

    /* padding: 5px; */
    /* border-radius: 50%; */
  }
  h2{
    text-align: center;
  }
  nav {
    background: black;
    top: 0;
    width: 100%;
    transition: all 0.5s;
    font-family: 'Inconsolata', monospace;
    margin-top: 0px;
    position: relative;
    font-size: 20px;

    z-index: 1;
  }
  
  
  
  .fixed-nav nav {
    position: fixed;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
    opacity: 0.8;
    /* background-color: white;
    color: #000; */
  
  }
  
  nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
  }
  
  nav li {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  li.logo {
    max-width: 0;
    overflow: hidden;
    background: white;
    transition: all .5s;
    font-weight: 600;
    font-size: 1.5rem;
  }
  
  .fixed-nav li.logo {
    max-width: 500px;
  }
  
  li.logo a {
    color: black;
  }
  
  nav a {
    text-decoration: none;
    padding: 20px;
    display: inline-block;
    color: white;
    transition: all 0.2s;
    text-transform: uppercase;
  }