* {
    color: #dddddd;
    background-color: #000000;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100svh;
    padding: 0;
    margin: 0;
}

main {
    display: flex;
    flex-direction: column;
    gap: 2.5em;

    a {
        text-decoration: none;
        color: inherit;
    }
    
}

footer {
    font-family: monospace;
    margin-top: 1em;

    a {
        color: #D09000;
    }
}

h1 {
    text-align: center;
}

p {
    text-align: center;
}

a {
    justify-content: center;
}

.snake_button_wrapper {
    position: relative;
}

.snake_button_canvas {
    z-index: 1;
}

.snake_button_text {
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    left: 50px;
    top: 13px;
    z-index: 2;
    font-size: 20px;
    cursor: pointer;
}

.item {
    padding: 0;
    margin: 0;
    a::after {
        content: "↗";
    }
}

.items {
    font-family: monospace;
    padding: 0;
}
