
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: cursive;
}
body{
    background-color: #f1f1f1;
}
p{
    background-color: #03346e;
    display: flex;
    justify-content: space-evenly;
    padding: 20px;
    color: #e2e2b6;
    font-size: 30px;
    font-weight: 800;
}
h1{
    font-size: 2rem;
    text-align: center;
    margin-top: 10px;
}
.btns{
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 70px;
}
button{
    padding: 20px;
    margin: 0 10px;
    font-size: 3rem;
    border: none;
    cursor: pointer;
    box-shadow: 4px 6px 10px;
    border-radius: 5px;
    transition: all 0.3s  ease-in-out;
}
button:hover{
    opacity: 0.7;
}
#rock{
    background-color: red;
}
#paper{
    background-color: #2196f3;
}
#scissor{
    background-color: #4caf50;
}
#user-score{
    color: yellow;
}
#comp-score{
    color: red;
}

#result{
    background-color: #021526;
    color: #e2e2b6;
    padding: 30px;
    width: 50vw;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    border-radius: 5px;
    font-size: 35px;
}
