﻿@font-face {
    font-family: Burford;
    src: url("/Fonts/burford-base.ttf") format('truetype');
}
.soundRoundMenuContainer {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    background-color: #C22936;
    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;
}

#soundRoundMenuTitle{
    font-size: 8vw;
    font-family: Burford;
    color: white;
}

.soundRoundsContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 2vw 4vh;
}

.soundRoundsContainer img {
    width: 45vw
}

.bottomBtnContainer{
    display:flex;
    justify-content: space-evenly;
    width: 100%;
}
.bottomBtnContainer img {
    width: 45vw;
}

@media screen and (min-width: 768px){
    .soundRoundsContainer {
        gap: 4vw 2vh;
    }

    .soundRoundsContainer img{
        width: 30vw;
    }
}