@charset "UTF-8";

body {
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  background: linear-gradient(180deg, #fff1c1, #ffd6a5);
  padding: 40px 20px;
  color: #6b3e26;
}

/* ヘッダー */
header h1 {
  font-size: 2em;
  color: #ff8c42;
  margin-bottom: 30px;
}

/* メインカード */
.container {
  background: #ffffff;
  max-width: 320px;
  margin: 0 auto;
  padding: 25px;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

/* 天気アイコン */
#weather-icon {
  font-size: 5rem;
  margin: 15px 0;
}

/* 天気テキスト */
#weather-text {
  font-size: 1.2em;
}

/* 気温 */
#temperature {
  font-size: 2.4em;
  font-weight: bold;
  color: #ff6f3c;
  margin: 10px 0;
}

/* ボタン */
button {
  padding: 12px 26px;
  font-size: 1em;
  cursor: pointer;
  background: linear-gradient(135deg, #ff9a3c, #ff6f3c);
  color: white;
  border: none;
  border-radius: 999px;
  box-shadow: 0 6px 0 #e65c2e;
  transition: all 0.2s ease;
}

button:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #e65c2e;
}

/* フッター */
footer {
  margin-top: 30px;
  font-size: 0.8em;
  color: #a86b3c;
}
