@media (min-width: 100px) {
    #landing-page-game-mode-choice {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 15px;
    }

    #landing-page-game-mode-choice > div {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        flex-direction: column;
        width: 150px;
        gap: 20px;
        cursor: pointer;
    }
    #landing-page-game-mode-choice > div:hover .stay-active-button {
        border-color: var(--accent-color);
    }

    #footer-text#footer-text {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        font-size: 15px;
        background-color: var(--background-color);
        width: 100vw;
        margin: 0;
        padding: 10px;
        border-radius: 50% 50% 0 0;
        box-shadow: 0 0 10px 0 var(--background-color);
    }

    #footer-text#footer-text a {
        font-size: 16px;
    }

    #footer-text#footer-text span {
        font-size: 15px;
    }

    #clear-localstorage-button:hover{
        cursor: pointer;
    }
}
@media (min-width: 640px) {
    #landing-page-game-mode-choice > div {
        width: 200px;
    }
}