body{
    padding:0;
    margin:0;
}

img{
    width:100%;
}

#container{
    width:100%;
    height: 100vh;
    display:flex;
    justify-content: center;
    align-items:center;
}

.box{
  width:65%;
  height:75%;
  position: relative;
  font-family: "Futura Std", "Helvetica Std", sans-serif;
  text-align: center;
}

.box h1 {
  font-size: 3.5em;
  color:#5bc0be;
  text-align: center;
  margin:0;
}

.box p {
  width:100%;
  margin: 5% 0;
  text-align: left;
  font-size: 1em;
  line-height:1.5;
  color:white;
}

.color1-bg{
  background-color:#5bc0be;
  border: solid 6px #0b132b;
}

.color2-bg{
  background-color:#0b132b;
  border: solid 6px #5bc0be;
}

.info{
    width: 80%;
    height: 100%;
    margin: auto;
    display:flex;
    flex-wrap:wrap;
    align-content: center;
    justify-content:center;
}

#snake-head, .snakeBody{
  width:15px;
  height:15px;
  background-color: #0b132b;
  border-radius: 50%;
  position:absolute;
}

.eggs, .badEggs{
    width:12px;
    height:12px;
    border-radius:50%;
    position: absolute;
    background:white;
}


.badEggs{
    background:red;
}

#score{
  height:25px;
  width: 130px;
  float: right;
  margin: 15px 15px 0px 0px;
  font-family: "Futura Std", "Helvetica Std", sans-serif;
  color:white;
  text-align: right;
}

#final-score{
  text-align: center;
  font-size: 2em;
}

.start-button{
  width:100%;
  margin: 2% 0;
  padding: 1.5% 0 1.5% 0;
  background-color:#5bc0be;
  color: #0b132b;
  font-weight: bold;
  font-size: 1em;
}

.start-button:hover{
   color: #0b132b;
   background-color:white;
}