* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'ArcadeClassic', sans-serif;
    min-height: 100vh;
    background-color: black;
}

h1, h2 {
    font-size: 1.5rem;
    margin-bottom: 2%;
    color: white; /* Set the text color to white */
}

li {
    list-style: none;
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: white; /* Set the text color to white */
}

.btn {
    font-family: "ArcadeClassic", sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    background-color: #000;
    border: 3px solid white;
    padding: 0.5em 1em;
    margin-bottom: 10px;
    box-shadow: 1px 1px 0px 0px #fff, 2px 2px 0px 0px #fff, 3px 3px 0px 0px #fff, 4px 4px 0px 0px #fff, 5px 5px 0px 0px #fff;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin: auto;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn:hover {
    color: #000;
    background-color: #fff;
}

.btn:active {
    box-shadow: 0px 0px 0px 0px;
    top: 3px;
    left: 3px;
}


.btn-reset {
    display: none;
}

@media (min-width: 768px) {
    .btn {
        padding: 0.25em 0.75em;
    }
}
