body{
    background-color: blue;
    background: linear-gradient(to bottom, #90dffe 0%,#38a3d1 100%);
    font-family: 'Press Start 2P', cursive;
    overflow: hidden;
    height: 100vh;
}
#Title{
    margin-top: 10%;
    text-shadow: -1px -1px 0 #000,
                  1px -1px 0 #000,
                 -1px  1px 0 #000,
                  1px  1px 0 #000;
}
h1{
    margin: 0;
}
h2{
    margin: 0px 0px 0px;
}
h3{
    margin: 10px 0 0 0;
}

#Buttons{
    position: relative;
    width: 520px;
    left: 50%;
    margin-left: -260px;
    margin-top: 8%;
}
#Buttons input{

}
.Grass{
    position: absolute;
    bottom: -200px;
    left:0%;
    margin: 0px;
    padding: 0px;
    height: 240px;
    width: 100%;
    background-color: green;
    transition: all 2s linear;
}
.Grass-Animated{
    height: calc(100% + 200px);
}
.Turtle{
    position: relative;
    left: -10%;
    bottom: 80px;
    width: 75px;
    height: 75px;
    animation-name: turtle;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes turtle{
    from {left: -10;}
    to {left: 110%;}

   /* 100%  { left: 0%; } */
}
/*
@keyframes Turtle {
  100%  { left: -10%; }
}
*/
@media screen and (max-width: 500px){
h1{
    margin: 5px 0px 0px;
}
h2{
    margin: 0px 0px 0px;
}
h3{
    margin: 10% 0px 0px;
}
#Buttons{
    width: 100%;
    margin-left: 0px;
    left: 0px;
    margin-top: 20%;
}
#Buttons input{
    display: block;
    margin: auto;
    margin-top: 10px;
}
}
@media screen and (max-height: 350px){
h1{
    margin: 10px 0px 0px;
}
h2{
    margin: 0px 0px 0px;
}
h3{
    margin: 10px 0px 0px;
}
#Buttons{
    margin-top: 1%;
}





}
