/* 全体の設定 */
body {
  background-color: #f8f8f8;
  font-family: Arial, sans-serif;
}

/* ヘッダーの設定 */
header {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* ナビゲーションの設定 */
nav {
  background-color: #666;
  color: #fff;
  display: flex;
  justify-content: center;
}

nav a {
  color: #fff;
  padding: 10px;
  text-decoration: none;
}

nav a:hover {
  background-color: #ddd;
  color: #333;
}

/* メインコンテンツの設定 */
main {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* サイドバーの設定 */
aside {
  background-color: #ccc;
  padding: 20px;
  width: 250px;
}

/* フッターの設定 */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}
