body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f8f8f0;
    /* 薄いベージュ */
}

header,
footer {
    background-color: #f0ead6;
    /* 薄い黄土色 */
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e0c2a8;
    /* 薄い茶色の境界線 */
    border-top: 1px solid #e0c2a8;
}

header h1 {
    color: #6d4c41;
    /* 茶色のタイトル色 */
    margin: 0;
}

header p {
    color: #795548;
    /* 濃い茶色の説明文色 */
    margin-top: 10px;
}

main {
    text-align: center;
    padding: 20px;
}

.hand-image {
    width: 80px;
    height: 80px;
    margin: 10px;
    border: 2px solid #e0c2a8;
    /* 薄い茶色の境界線 */
    border-radius: 5px;
    transition: transform 0.2s;
}

.hand-image:hover {
    transform: scale(1.1);
}

footer {
    color: #795548;
    /* 濃い茶色のテキスト色 */
    font-size: 0.9em;
}

form {
    margin-top: 20px;
    margin-bottom: 100px;
}

button {
  border: none;
  background: transparent;
}

button {
    transition: transform 0.2s;
    /* ホバーエフェクトのアニメーションを設定 */
}

button:hover {
    transform: scale(1.1);
    /* ホバー時に画像を1.1倍に拡大 */
}
