@charset "UTF-8";
/* styles.css */
body{
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center; /* 水平方向の中央揃え */
  background-color: #eaeaea; /* 背景色 */
  font-family: Arial, sans-serif;
  text-align: center;
}

.container{
  width: 150%;
  max-width: 800px;         /* 最大幅を設定 */
  background-color: white;
  padding: 10px;
  border-radius: 8px;       /* 角を丸く */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 軽い影を追加 */
}

.nav-button{
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  background-color: #007bff;
  border-radius: 5px;
}

.nav-button:hover{
  background-color: #0056b3; /* ホバー時の色変更 */
}

footer{
  margin-top: 20px;
  font-size: 12px;
  color: #666;
}