* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
}
body {
    text-align: center;
    /* font-family: 'Courier New', Courier, monospace; */
    font-family: "", cursive;
    /* 3d */
    perspective: 350px;
    padding-top: 180px;
    font-size: 22px;
}
img {
    width: 400px;
}
#panel{
    align-content: center;
    position: absolute;
    z-index: 10;
    top:0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgb(255, 244, 164);
    transition: all 0.5s ease-in;
    /* 3d stuff */
    transform-style: preserve-3d;
}
#panel.slide-up{
    transform: translateY(-50%) rotateX(70deg);
}