.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: space-around;
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

.widget {
    width: 100%;
    border-radius: 10px;
    height: 300px;
}

.menuitem {
    flex-basis: 47%;
    height: 150px;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    border-radius: 10px;
}



#more {
    margin-left: 8px;
    margin-top: 0px;
    flex-basis: 98%;
    height: 75px;
}

.menuitem:hover {
    cursor: pointer;
}

.menuitemgfx {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.balance {
    width: 100%;
    border-radius: 10px;
    height: 100px;
}

.clickablediv {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

@media (min-width: 1200px) {
    .balance {
        width: 33%;
    }

    .menu {
        width: 33%;
        justify-content: space-evenly;
        align-content: space-evenly;
    }

    .menuitem {
        flex-basis: 48%;
    }

    #more {
        margin-top: 0px;
    }

    .widget {
        width: 33%;
        height: 300px;
    }
}