body {
    background: linear-gradient(135deg, #d4a574 0%, #8b6f47 100%);
    font-family: 'Georgia', serif;
    height: 50vh;
    margin: 0;
    padding: 20px;
}

#score_store div{
    padding: 15px 30px;
    margin: 10px auto;
    border: 2px solid aliceblue;
    border-radius: 5px;
    max-width: 300px;
    color: #2c1810;
    font-size: 1.1em;
    font-family: 'Georgia', serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}

#heading {
    color: #2c1810;
    text-align: center;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
    font-weight: normal;
    letter-spacing: 2px;
}

#btn {
    text-align: center;
    margin: 60px 20px;
    background: #e8d5c4;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 3px solid #8b6f47;
}

#btn h2 {
    color: #2c1810;
    font-size: 1.8em;
    margin-top: 0;
    font-weight: normal;
    letter-spacing: 1px;
}

#rock, #paper, #scissor {
    display: inline-block;
    height: 50px;
    width: 90px;
    margin: 20px 15px;
    border: 3px solid #2c1810;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Georgia', serif;
}

#rock, #paper, #scissor:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

#rock, #paper, #scissor:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#rock {
    background-color: #a0826d;
    color: #fff;
}

#paper {
    background-color: #d4a574;
    color: #2c1810;
}

#scissor {
    background-color: #8b6f47;
    color: #fff;
}

#scores {
    text-align: center;
    margin-top: 40px;
}

#scores div {
    background: #e8d5c4;
    padding: 15px 30px;
    margin: 10px auto;
    border: 2px solid #8b6f47;
    border-radius: 5px;
    max-width: 300px;
    color: #2c1810;
    font-size: 1.1em;
    font-family: 'Georgia', serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#refresh {
    display: block;
    margin: 30px auto;
    padding: 15px 40px;
    background-color: #2c1810;
    color: #e8d5c4;
    border: 3px solid #8b6f47;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    font-family: 'Georgia', serif;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#refresh:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    background-color: #4a3b2a;
}

#refresh:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}