body {
    font-family: 'Hiragino Sans', 'Arial', sans-serif;
    text-align: center;
    background-color: #36454F; /* チャコールグレー（夜の色） */
    color: #f0f8ff; /* アリスブルー */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: #2c3a47; 
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 500px;
}

h1 {
    color: #B0C4DE; /* ライトスチールブルー */
}

#count-display {
    font-size: 3.5em;
    margin: 20px 0;
    font-weight: bold;
    color: #FFFFFF;
}

#sheep-visual {
    font-size: 5em;
    margin-bottom: 20px;
    transition: transform 0.1s; /* 押した時に少し動かすためのトランジション */
}

#count-button {
    padding: 15px 30px;
    font-size: 1.5em;
    background-color: #f0f8ff; /* アリスブルー（羊の色） */
    color: #2c3a47;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px #a9a9a9;
    margin-bottom: 20px;
    transition: background-color 0.2s, box-shadow 0.2s, transform 0.1s;
}

#count-button:active {
    box-shadow: 0 2px #a9a9a9;
    transform: translateY(3px);
}

.sound-control button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #6a5acd; /* スレートブルー */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

#message {
    margin-top: 25px;
    font-size: 1.1em;
    color: #add8e6; /* ライトブルー */
    min-height: 30px;
}