.container1{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.container2{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
body{
    background-color:white;
    color:black;
    font-family: 'Space Grotesk', sans-serif;
}
table,th,tr{
    border:2px solid black;
}
h1{
    text-align:center;
}
h3{
    text-align:center;
    font-weight:bold;
    text-decoration:underline;
}
h4{
    text-align:center;
}
#rock{
    font-size:18px;
}
#paper{
    font-size:18px;
}
#scissors{
    font-size:18px;
}
#endGame{
    font-size:30px;
    border-radius:10px;
}