* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
}
body {
    text-align: center;
    /* font-family: 'Courier New', Courier, monospace; */
    padding-top: 66px;
    font-size: 22px;
    background-color: #F5F5F5;
}
img {
    width: 400px;
    height: auto;
}
#panel{
    align-content: center;
    position: absolute;
    z-index: 10;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 106, 255);
    transition: all 1.2s;
}
.slide-up{
    transform: translateY(-100%);
    /* transform: translateY(-90vh); */
}
button {
    padding: 10px 20px;
    display: block;
    margin: auto;
    border-radius: 25px;
    font-size: 2.4rem;
    background-color: rgb(0, 106, 255);
}
button a{
    color: black;
    text-decoration: none;
}
button a :hover{
    text-decoration: underline;
}