* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
}
body {
    text-align: center;
    /* font-family: 'Courier New', Courier, monospace; */
    font-family: "League Script", cursive;
    /* 3d */
    perspective: 350px;
    padding-top: 366px;
    font-size: 22px;
}
p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9em;
    max-width: 1000px;
    position: relative;
    margin: 20px auto;
}
img {
    width: 500px;

}
#panel{
    /* align-content: center; */
    padding-top: 5%;
    position: fixed;
    z-index: 10;
    top:0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: burlywood;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* 3d stuff */
    transform-style: preserve-3d;
}
.slide-up{
    transform: translateY(-50%) rotateX(70deg);
    /* transform: translateY(-90vh); */
}
.screenshots {
    width: 70%;
    display: inline-block;
}
h3{
    font-size: 2em;
}

#game {
    padding: 10px 30px;
    font-size: 2.4em;
    background: rgb(65, 195, 65);
    border-radius: 20px;
    border: none;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.473);
    cursor: pointer;
    display: inline-block;
}
#game:hover {
    background-color: palevioletred;
    rotate: 180deg;
}
.background {
    background-color: darkred;
}