* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
    background-color: cyan;
}
body {
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    perspective: 350px;
    padding-top: 66px;
    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: rgba(0, 0, 255, 0);
    transition: all 4s ease-in;
    transform-style: preserve-3d;
}
#panel.slide-up{
    transform: translateY(-150vh);
}
img#poke{
    width: 100%;
    height: auto;
}
h3{
    margin-block-start: 1px;
    margin-block-end: 1px;
    margin-inline-end: 600px;
    margin-inline-start: 600px;
}

button{
    padding: 10px;
}
