body { 
margin: 0px; 
overflow: hidden; 
}

#message {
    font-family: snow-white;
    color: white;
    font-size: 8vh;
}

@font-face {
  font-family: 'snow-white';
  src: url('/web3/project2/images/snow-white.ttf') format('truetype');
}

#panel {
    width: 100%;
    height: 100vh;
    background-color: #262262;
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    font-size: 5vh;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

#panel.slide-down {
    opacity: 1;
    pointer-events: auto;
}

#panel button {
    display: block;
    color:#231F20;
    background-color: #FFD886;
    padding: 2%;
    border: 5px solid white;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 2vh;
    cursor: pointer;
}

.arrow { 
position: absolute; 
background: none; 
width: 3em; 
height: 3em; 
}

#uArrow { 
top:0px; 
width: 100%; 
}

#dArrow { 
bottom:0px; 
width: 100%; 
}

#lArrow { 
left:0px; 
height: 100%; 
}

#rArrow { 
right:0px; 
height: 100%; 
}

