﻿@font-face{
    font-family: Iowan-Old-Style-Regular;
    src: url("/Fonts/Iowan-Old-Style-Regular.ttf") format("truetype")
}
.soundRoundMenuContainer {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    background-color: #405E48;
    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: Iowan-Old-Style-Regular;
    color: white;
}

.soundRoundsContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 5vw 10vw;
}

.soundRoundsContainer img {
    width: 40vw
}

.bottomBtnContainer{
    display:flex;
    justify-content: space-evenly;
    width: 100%;
}

.smallButtons{
    height: 15vw;
    font-size: 3.5vw;
    font-family: Iowan-Old-Style-Bold;
    width: 50%;
    text-transform: uppercase;
    font-weight: bold;
}

.smallBtnActive{
    background: url("/Images/smallBtnActive.svg") !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}

.smallBtn{
    background: url("/Images/smallBtn.svg");
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottomBtnContainer img {
    width: 45vw;
}

@media screen and (min-width: 768px){
    .soundRoundsContainer {
        gap: 4vw 2vh;
    }

    .soundRoundsContainer img{
        width: 30vw;
    }
}