/* 全体のフォントや背景 */
body {
    background-color: #f0f8ff; /* 爽やかな水色 */
    transition: background 0.5s ease; /* JSで色を変える用 */
}

/* ヘッダーをグラデーションに */
header {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

/* マウスを乗せた時のアニメーション */
section:hover {
    transform: translateY(-5px);
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}