body {
background-color: #3B0270;
    color: hsl(0, 0%, 13%, 0.991);
    margin: 0%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
}
.game{
    background-color: #6F00FF;
    display: flex;
    flex-direction: column;
    width: 30%;
    min-width: 22em;
    border-radius: 2rem;
    align-items: center;
    justify-content: center;
    min-height: 35rem;
}
.game h1 {
    font-family: Goldman;
    font-weight: 700;
    color: bisque;
    text-align: center;
    margin: .5em 1em .25em 1em;
    line-height: 1.6rem;
}
.screen {
    background-color: #E9B3FB;
    height: 8em;
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    padding: .7em 1.5em;
    margin: .25em 0;
    border-radius: 2em;
    border: .2em solid #3B0270;
}
.player {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 40%;
    height: 100%;
}
.comp {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 40%;
}
.screen h4{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    margin: 0 1em;
    font-family: goldman;
    font-weight: 20rem;
    text-align: center;
    font-size: 1em;
    width: 100%;
}
.screen img{
    height: 100%;
}
.control {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 1rem;
}
.control button {
    background-color: #3B0270;
    border: .25rem solid white;
    border-radius: 50%;
    padding: 1em;
    cursor: pointer;
    width: 5rem;
    height: 5rem;
    background-repeat: no-repeat;
    background-position: center;
    transition: .2;
}
.control button:nth-child(1) {
    background-image: url(images/rok.png);
}
.control button:nth-child(2) {
    background-image: url(images/ppr.png);
}
.control button:nth-child(3) {
    background-image: url(images/ssr.png);
}
.control button:hover {
    background-color: #E9B3FB;
    border-color: #3B0270;
}
.control button:nth-child(1):hover {
    background-image: url(images/hrok.png);
}
.control button:nth-child(2):hover {
    background-image: url(images/hppr.png);
}
.control button:nth-child(3):hover {
    background-image: url(images/hssr.png);
}
.state {
    display: flex;
    flex-direction: row;
    gap: .25em;
    justify-content: center;
    margin: .25em 1em;
    gap: 2em;
    font-size: 2em;
}
.state h5{
    font-family: goldman;
    font-weight: 400;
    font-size: .8em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    flex-direction: column;
    text-align: center;
    margin: 0;
}
#restart {
    background-color: #3B0270;
    margin: .25em 1em .5em 1em;
    width: 60%;
    padding: .5em 1em;
    border: .1em solid white;
    color: white;
    border-radius: 15em;
    font-family: goldman;
    font-weight: 400;
    font-size: 1.5rem;
    cursor: pointer;
    transition: .2;
}
#restart:hover {
    background-color: #E9B3FB;
    color: #3B0270;
    border-color: #3B0270;
}
#sig {
    font-family: goldman;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.122);
    margin: 0;
}
