.skyDiv{
    text-align: center;
    width: 100%;
    height: 82vh;
}
body{
    background-color: #1CC1D8;
    margin: 0;
}
.container{
    display:grid;
    justify-content: space-evenly;
    grid-template-columns: 50% 10%;
}
.ground{
    background-color: #79AA12;
    display: block;
    height: 18vh;
    width: 100%;
}
.content{
    display: grid;
    width: 100%;
    align-content: space-between;
}
.containerMuteTitle{
    display: grid;
    grid-template-areas: "item1 item2";
    grid-template-columns: 1% 99%;
    
}
.titleGame{
    grid-area: "item2";
}
.muteButton{
    width: 2.2rem;
    height: 5vh;
    background-color: #D2BD02;
    border: 1px solid black;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 2px 2px 2px 1px rgba(1, 1, 25, 0.2);
}
.imageForPerson{
       /* width: auto; */
       margin-top: 29vh;
       height: 90%;
   
}
.person{
    height: 45vh;
    vertical-align: bottom;
    text-align: right;

}
.InfoText{
    font-size: large;
}
.info{
    background-color: #D2BD02;
    padding: 10px;
    transition: 0.5s;
    box-shadow: 12px 12px 2px 1px rgba(0, 0, 255, .2);
}
.info:hover{
    text-align: center;
    vertical-align:middle;
    scale: 1.1;
}
.backButton{
    width: 2.2rem;
    height: 5vh;
    margin-left: 2.2rem;
    position: absolute;
    background-color: #D2BD02;
    border: 1px solid black;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 2px 2px 2px 1px rgba(1, 1, 25, 0.2);
}
.buttonsDiv{
    display: flex;
    grid-area: "item1";
    gap: 10px;
}
.textBack{
    text-decoration: none;
}