﻿.soundRoundMenuContainer {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    background-color: #202561;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

#soundRoundMenuTitle{
    width: 50vw;
}

.soundRoundsContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 10vw 5vw;
}

.soundRoundsContainer img {
    width: 45vw
}

.bottomBtnContainer{
    display:flex;
    justify-content: center;
}
.bottomBtnContainer img {
    width: 50vw;
}

@media screen and (min-width: 768px){
    .soundRoundsContainer {
        gap: 4vw 2vh;
    }

    .soundRoundsContainer img{
        width: 35vw;
    }
}