
button{
    user-select: none;
    cursor: pointer;
}

.waveShop{
    display: flex;
    flex-direction: column;
    width: 95%;
    height: 95%;
    background-color: gray;
    border: 2px solid black;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.waveShop > .up{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 5vh;
    border-bottom: 2px solid black;
    justify-content: space-around;
    align-items: space-around;
}

.waveShop > .up > .box{
    display: flex;
    height: 100%;
    justify-content: space-around;
    align-items: center;
}

.waveShop > .mid{
    display: flex;
    width: 100%;
    height: 85vh;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-y: auto;
}

.waveShop > .mid > *{
    display: flex;
    width: 220px;
    height: 60px;
    background-color: black;
    color: white;
    user-select: none;
    cursor: pointer;
    margin: auto;
    justify-content: center;
    padding: 5px;
}

.waveShop > .mid > * > *{
    align-self: center;
}

.waveShop > .down{
    display: flex;
    width: 100%;
    height: 10vh;
    flex-wrap: wrap;
    flex-direction: column;
    border-top: 2px solid black;
    justify-content: space-around;
    align-content: center;
}

.waveShop > .down > button{
    padding: 2.5px 10px;
}

.waveShop > .mid > *:hover{
    background-color: white;
    color: black;
}