body{
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}
.player{
    background-color: rgba(128, 128, 128, 0.555);
    height: 300px;
    width: 100px;
    border: 5px solid white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: larger;
    font-weight: bold;
    border-radius: 10px;
}
img{
    width: 30vw;
    height: auto;
    padding: 20px;
}
.buttons{
    margin: 0;
    padding: 0;
    width: 300px;
    height: 300px;
    background-color: gray;

    display: grid;
    grid-template: 1fr 1fr 1fr / 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
    justify-content: center;
    border: none;
}
.buttons > button{
    width: 101%;;
    height:101%;
    margin: 0;
    padding: 0;
    align-self: center;
    justify-self: center;
    border: none;
}
button:hover{
    background-color: rgba(110, 255, 255, 0.164);
}
.red{
    background-image: url(sign_X.png);
    background-size: cover;
}
.blue{
    background-image: url(sign_O.png);
    background-size: cover;
}

#result{
    height: 50px;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
section{
    display: flex;
    align-items:center;
    flex-direction: column;
    font-size: larger;
    font-weight: 700;
}
#replay, #reset{
    margin-top: 20px;
    border-radius: 30px;
    border: none;
}
#replay{
    padding: 5px;
    height: 40px;
    width: 100px;
    background-color: rgba(0, 0, 255, 0.377);
}
#reset{
    padding: 3px;
    height: 25px;
    width: 70px;
    background-color: rgba(255, 0, 0, 0.377);
}
.playing{
    border:5px yellowgreen solid !important;
}
input{
    width: 85%;
    margin-bottom: 100px;
    border: none;
    border-radius: 25px;
    text-align: center;
}