* {
    box-sizing: border-box;
}

html,
#main {
    margin: 0;
    padding: 0;
}

body {
    background-color: #2F3336;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#menu {
    width: 50vw;
    height: 60vh;
    min-height: 180px;
    margin: auto;
    text-align: center;
    background-color: #1E2225;
    border: 5px solid #39a5f1;
    border-radius: 20px;
    padding: 10px 5px;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    color: whitesmoke;
    margin-top: 20vh;
}

.menuButton {
    border: 3px solid #39a5f1;
    color: whitesmoke;
    text-decoration: none;
    height: 17%;
    font-size: 5.5vh;
    padding: 10px;
    margin: 0 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

a.menuButton:visited {
    color: whitesmoke;
    text-decoration: none;
}

.menuButton:hover {
    background-color: #2F3336;
    cursor: pointer;
}

@media (max-width: 600px),
(max-height: 300px) {
    body {
        background-color: #1E2225;
        /* overflow: hidden; */
    }

    #menu {
        width: 90vw;
        height: 97vh;
        border: none;
        margin: 0 auto;
        padding: 0;
        min-height: 420px;
    }
}