body
{
    font-family: "Rubik Glitch";
}

.main
{
    height: 100vh;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
}

img
{
    height: 100px;
    width: auto;
}

.score
{
    display: none;
    font-size: 90px;
    margin: 40px;
}

.score p
{
    margin-top: 0;
    margin-bottom: 0
}

.play 
{
    margin: 40px;
    background-color: rgb(200, 8, 8);
    padding: 10px 100px;
    font-size: 55px;
    font-family: "Rubik Glitch";
    color: white;
    border: none;
    border-radius: 55px;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.play:hover
{
    background-color: rgba(255, 0, 0, 0.49);
}


#two
{
    font-size: 60px;
    text-align: center;
}

.bigg
{
    display: flex;
    flex-shrink: 0;
}

.rps-buttons
{
    background-color: transparent;
    width:330px;
    height: 300px;
    position: relative;
    margin: 40px;
}

.rps-buttons button
{
    position: absolute;
    border-radius: 50%;
    padding: 15px;
    background-color: transparent;
}

.rps-buttons button:hover
{
    background-color: rgba(255, 0, 0, 0.49);
}

#rock 
{
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

#paper
{
    bottom: 0;
    left: 0;
}

#scissors
{
    right: 0;
    bottom: 0;
}

.commentary 
{
    display:flex;
    margin: 40px;
}

.commentary p
{
    padding-right:5px;
    display: flex;
    font-size: 40px;
    border-right: 5px solid rgb(0, 0, 0); /*the cursor!*/
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /*gives writing effect.*/
    animation: blink-caret .75s step-end infinite;
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: rgba(176, 1, 1, 0.795); }
}
