
@media () {

    .side-nav {
        display: none;
    }

    .top-bar {
        height: 20vh;
    }

    .game-nav {
        width: 50%;
        height: 250px;
        position: absolute;
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .game-nav .forms {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .game-nav .forms .username {
        
        padding: 3px;
        outline: none;
        border: var(--border);
        border-radius: var(--border-radius);
        background-color: #f1ece1;
        box-shadow: inset 0 -4px 0 #dbc2af;
        width: 95%;
        text-align: center;
        font-weight: bold;
        color: #141414;
        font-size: 15px;
        margin-bottom: 3px;
    
    }
    
    .game-nav .forms .username::placeholder {
        font-weight: bold;
        color: #141414;
    }
    
    .game-nav .forms hr {
        outline: none;
        border: none;
        height: 5px;
        border-radius: var(--border-radius);
        margin-top: 5px;
        margin-bottom: 5px;
        background-color: #141414;
        display: none;
    }

    #select-server {
        background-color: #01595b;
        background-image: url('../assets/lostworld_logo.png');
        background-repeat: no-repeat;
        background-position: 143%;
        background-position-y: -50px;
        box-shadow: inset 0 -2px 0 #074645;
        width: 60%;
        text-align: left;
        font-size: 15px;
        padding: 6px;
    }
    
    #play {
        background-color: #97ba42;
        box-shadow: inset 0 -4px 0 #819937;
        width: 40%;
        margin-left: 3px;
        font-size: 15px;
    }
    
    #challenges {
        background-color: #efbc61;
        background-image: url('../assets/lostworld_trophy.png');
        background-repeat: no-repeat;
        background-position-x: 100%;
        background-position-y: -15px;
        background-size: 100px 80px;
        box-shadow: inset 0 -2px 0 #9c7031;
        font-size: 15px;
        padding: 4px;
        margin-bottom: 10px;
        display: none;
    }
    
    #shop {
        background-color: #debf31;
        box-shadow: inset 0 -2px 0 #e29626;
        width: 40%;
        margin-right: 3px;
        font-size: 15px;
        padding: 4px;
        display: none;
    }
    
    #pets {
        background-color: #01595b;
        box-shadow: inset 0 -2px 0 #094340;
        width: 60%;
        text-align: right;
        font-size: 15px;
        padding: 4px;
        display: none;
    }

    .bottom-nav {
        position: absolute;
        display: flex;
        width: 95%;
        margin-bottom: 20px;
        left: 0;
        right: 0;
        bottom: 0;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .bottom-nav .items {
        display: flex;
        margin-left: auto;
        margin-right: auto;
    }

    .bottom-nav .items .item {
        list-style: none;
        padding: 5px;
        margin: 5px;
        min-width: 100px;
        text-align: center;
        background-color: #161616;
        border-radius: 5px;
        text-transform: uppercase;
        font-weight: bold;
        margin-left: auto;
    }

}

@media only screen and (max-width: 600px) {

    .side-nav {
        display: none;
    }

    .game-nav {
        width: 90%;
    }

    .bottom-nav {
        position: absolute;
        display: flex;
        width: 95%;
        margin-bottom: 20px;
        left: 0;
        right: 0;
        bottom: 0;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .bottom-nav .items {
        display: flex;
        margin-left: auto;
        margin-right: auto;
    }

    .bottom-nav .items .item {
        list-style: none;
        padding: 5px;
        margin: 5px;
        min-width: 100px;
        text-align: center;
        background-color: #161616;
        border-radius: 5px;
        text-transform: uppercase;
        font-weight: bold;
        margin-left: auto;
    }

    .menu {
        width: 90%;
        min-height: 70%;
    }

    .menu .menu-form .form-actions {
        display: grid;
        grid-template-columns: auto;
        grid-gap: 5px;
        margin-left: auto;
        margin-right: auto;
    }

    .menu .menu-form .form-actions input[type="text"] {
        width: 91%;
    }

    .menu .menu-form .form-actions .action {
        width: 100%;
    }
    
}