#burrower-modal {
    display: none;
    position: absolute;
    left: 8%;
    top: 15%;
    width: 80%;
    height: 60%;
    background: white;
    border: 1px solid black;
    box-shadow: 0.1em 0.1em black;
    padding: 2%;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: scroll;
    text-align: justify;
    font-size: 1.2vw;
}

#burrower-logo {
    position: absolute;
    width: 97.5%;
    background-repeat: no-repeat;
    background-size: contain;
}

#game-nav.full-bottom {
    left: 6px;
    right: 0;
    border-right: 2px solid black;
    border-left: 0;
}

#burrowerGrid-container {
    display: grid;
    grid-template-columns: 15% 85%;
    padding-top: 5%;
}

#grid-item-1 {
    grid-column: 1 / 2;
}

#grid-item-2 {
    grid-column: 2 / 3;
}

@media screen and (max-width: 450px){
    #burrowerGrid-container {
        grid-template-columns: 1fr;
        grid-template-rows: 15% 85%;
    }

    #grid-item-1 {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
    }
    
    #grid-item-2 {
        grid-row: 2 / 3;
        grid-column: 1 / 2;
    }

    #burrowerGrid-container p {
        margin: 0.5em 0;
    }
}

@media screen and (max-width: 900px) and (min-width: 601px){
    #burrowerGrid-container {
        grid-template-columns: 20% 80%;
    }
}

@media screen and (max-width: 600px) and (min-width: 451px){
    #burrowerGrid-container {
        grid-template-columns: 35% 65%;
    }
}