*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    text-align: center;
    perspective: 350px;
    padding-top: 66px;
    font-family: Sour Gummy;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
}


p{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 0.9em;
    max-width: 1000px;
   

}
  
img{
    width: 400px;
}

#panel{
   /* align-content: center;*/
   padding: top 5%;
    position: absolute;
    z-index: 10;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #FFE194;
    transition: all 0.5s ease-in;
    transform-style: preserve-3d;
}

#panel.slide-up{
   transform: translateY(-175vh);
}

.screenshots{
    width: 250px;
    display: inline-block;
}

h3{
    font-size: 2em;
}

#game{
    padding: 10px 30px;
    font-size: 2.4em;
    background: #E5F3FD;
    border-radius: 20px;
    border: none;
    box-shadow: 10px 10px 20px #6ac5fe;
    cursor: pointer;
    display: inline-block;

}

#game:hover{
    background-color: #fffbc8;
    box-shadow: 10px 10px 20px #fff157;
}

