body {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    display: flex;
    align-items: stretch;
}

a {
    color: blue;
}

canvas{
    image-rendering: pixelated;
}

.start{
    color:white;
    position: fixed;
    width: 100%;
    text-align: center;
    pointer-events: none;
    font-weight: bold;
    font-size: 3vh;
    top: 10vh;
}

.be-gone{
    display: none;
}

.main-title {
    width: 100%;
    position: fixed;
    text-align: center;
    top: -100vh;
    color: white;
    transition: transform 1s;
    pointer-events: none;
    font-weight: bold;
}

.main-title h1 {
    font-size: 7vh;
    margin-bottom: 0;
}

.main-title p {
    font-size: 3vh;
    margin: 0;
    margin-bottom: 15px;
}

.main-title-move {
    transform: translateY(100vh);
}

.panel {
    padding: 20px;
    margin: 20px;
    position: fixed;
    left: -600px;
    font-size: 16pt;
    max-height: 80vh;
    width: 80vw;
    max-width: 500px;
    transition: transform 0.5s;
    overflow: auto;
    scrollbar-width: thin;
}

.panel-move {
    transform: translateX(600px);
}

#minecraft {
    color: white;
    background-color: #1C0B1B;
    border-style: double;
    border-radius: 10px;
    border-color: #575EEA;
    border-width: 10px;
}

#minecraft a {
    color: #54FCFC;
}

.close-button, #minecraft .close-button {
    color: red;
}

img {
    width: 90%;
    image-rendering: pixelated;
    margin: auto;
    border-radius: 20px;
}