﻿@font-face{
    font-family: Gills-Sans-MT-Regular;
    src: url("/Fonts/Gill Sans MT.ttf") format("truetype")
}
.soundRoundMenuContainer {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    background-image: url("/Images/soundBackground.svg");
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.soundRoundTitleAndSoundsContainer{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 90vh;
    margin-top: 5%;
}

#soundRoundMenuTitle{
    text-transform: uppercase;
    font-size: 5vw;
    font-family: Gills-Sans-MT-Regular;
    color: white;
}

.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: space-evenly;
    width: 100%;
}

.smallButtons{
    height: 16vw;
    font-size: 4vw;
    font-family: Gills-Sans-MT-Regular;
}

.bottomBtnContainer img {
    width: 45vw;
}

@media screen and (min-width: 768px){
    .soundRoundsContainer {
        gap: 4vw 2vh;
    }

    .soundRoundsContainer img{
        width: 30vw;
    }
}