*{
    margin: 0;
    padding: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
h1{
    text-align: center;
    width: 100vw;
    font-size: 50px;
    color: #fff;
    background-color: #232f3e;
    padding: 20px;
}
.container{
    height: 800px;
    width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    
    flex-direction: column;
}
.options{
    height: 40%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
   
}
.options button{
    height: 70%;
    width: 23%;
    border-radius: 50%;
    margin: 20px;
    border: none;
}
.options button:hover{
    transform: translate(0.98);
    border: 2px solid black;
    box-shadow: 0px 0px 10px black;
}
.options .rpc img{
    height: 100%;
    width: 100%;
    border-radius: 50%;
    cursor: pointer;
}

.scorebox{
    height: 30%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    font-weight: 800;
    line-height: 50px;
    
}
.scorebox .num{
    height: 50%;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.scorebox .name{
    height: 50%;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.resultbox{
    height: 25%;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    font-weight: 800;
    line-height: 50px;
}
.resultbox p{
    background-color: green;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
}
.resultbox #result:hover{
    box-shadow: 0px 0px 5px black;
}
#reset{
    border: none;
    background-color: #232f3e;
    color: #fff;
    font-size: 35px;
    font-weight: 800;
    height: 100px;
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
    cursor: pointer;
}
#reset:hover{
    box-shadow: 0px 0px 6px black;
    transform: scale(0.9);
    transition: ease;
}