*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
}

body{
    background: url("./img/cats.png");
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h1{
    font-size: 5rem ;
    color: rgba(59, 56, 56, 0.973);
}

img {
    width: 5rem;
    height: 5rem;
}

.container {
    
    padding: 70px;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.buttons {
    margin: 30px 0;
    display: flex;
    gap: 40px;
   
}

button {
    padding: 10px;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;

}

button:hover {
    opacity: 0.7;
    transform: scale(1.02);
}

button:active {
    opacity: 0.6;
    transform: scale(0.98);
}

#rock {
    background-color: #bb95d1;
}

#paper {
    background-color: #d683c1;
}

#scissors {
    background-color: #77bad4;
}

p {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: rgba(59, 56, 56, 0.973);
}

.your-score span {
    color: rgb(31, 47, 138);
}

.machine-score span {
    color: rgb(196, 58, 58) ;
}