body {
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 26px;
}

#rock, #scissors, #paper {
    background-color: white;
    color: rgb(51, 51, 51);
    border: 5px solid transparent;
    margin: 20px 30px;
    padding: 20px;
    border-radius: 200px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    height: 200px;
    width: 200px;
    transition: border-color 0.15s ease;
    transition: all 0.3s ease;
}

#rock:hover, #scissors:hover, #paper:hover {
    border-color: gold;
    transform: translateY(-30px) scale(1.1);
}


#rock img, #paper img, #scissors img {
    width: 100px;
}

#reset-score {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    padding: 14px 20px;
    font-size: 20px;
    border-radius: 40px;
    border: none;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    background-color: rgb(31, 177, 62);
    color: white;
    cursor: pointer;
    transition: transform 0.15s;
}

#reset-score:hover, .auto-play-button:hover {
    transform: scale(1.1);
}

.move-icon {
    width: 30px;
}

.auto-play-button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 14px 20px;
    background-color: white;
    cursor: pointer;
    border: none;
    border-radius: 40px;
    transition: transform 0.15s ease;
    margin: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.30)
}

.buttons { 
    display: flex;
    justify-content: center;
}

@media (max-width: 810px) {
    #rock, #scissors, #paper {
        width: 150px;
        height: 150px;
    }
    #rock img, #paper img, #scissors img {
        width: 75px;
    }
}