body{
    text-align: center;
}
img{
    width: 30px;
}
p span{
    font-weight: bold;
    font-size: 20px;
}
.selectionMenuPlay{
    width: 150vw;
    height: 50px;
    margin-top: 10px;
    background-color: transparent;
    border-radius: 10px;
}
.headSelector{
    margin-top: 10px;
    background-color: transparent;
    border-radius: 10px;
    font-weight: bold;
    font-size: bold;
}
.footer {
    font-family: sans-serif;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(0, 0, 0);
    color: white;
    text-align: center;
    padding: 1px;
  }

  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes color {
    0%   { background: #33CCCC; }
    20%  { background: #33CC36; }
    40%  { background: #B8CC33; }
    60%  { background: #FCCA00; }
    80%  { background: #33CC36; }
    100% { background: #33CCCC; }
  }

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* overflow: hidden; */
    animation: color 9s infinite linear;
}
h1{
    font-family: sans-serif;
    font-weight: 800;
    margin: 15px 0;
}
h2{
    font-family: sans-serif;
    font-weight: 800;
    margin: 15px 0;
}
.footer {
    font-family: sans-serif;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(0, 0, 0);
    color: white;
    text-align: center;
    padding: 20px;
  }
.gameSpace{
    display: flex;
}
.gameSpace .playerBox{
    width: 350px;
    margin: 20px 50px;
}
.playerBox .playerScore{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}
.playerScore span , .playerScore h3{
    font-size: 25px;
    font-weight: bold;
    margin: 0px 10px;
    font-family: sans-serif;
    color: black;
}
.playerImg{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
}
.playerImg img{
    width: 100px;
}
.PlaySelectButton{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 100px;
}
.PlaySelectButton img{
    padding: 25px;
    width: 100px;
}
.PlaySelectButton button{
    padding: 25px;
    width: 150px;
    height: 150px;
    background-color: transparent;
    
}

.PlaySelectButton button:hover{
    padding: 25px;
    width: 150px;
    height: 150px;
    animation: color 9s infinite linear;
    transform: translateY(-30px);
    border-radius:100px;
    cursor:pointer;

}

.PlaySelectButton .selectionMenu{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 100px;
}