@charset "UTF-8";

body {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-family: "Baloo 2", "M PLUS Rounded 1c", sans-serif;
  letter-spacing: 1px;
  padding: 50px;
}

h1{
  color: #ff4db8;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 77, 184, 0.9),
               0 0 14px rgba(255, 0, 144, 0.9);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

#weather-result {
  background: rgba(22, 21, 23, 0.759);
  border: 2px solid #ff21b9;
  border-radius: 30px;
  padding: 40px;
  max-width: 350px;
  margin: 0 auto 70px;
  box-shadow: 0 0 30px rgba(255, 77, 184, 0.5),
              0 0 30px rgba(255, 0, 144, 0.3);
}


.container {
  background: white;
  max-width: 300px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#weather-icon {
  font-size: 6rem;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

#weather-text {
  font-size: 1.5rem;
  margin-top: 8px;
  color: #ffffff;
   text-shadow: 0 0 8px rgba(255, 0, 144, 0.8);
}

#temperature {
  font-size: 2em;
  font-weight: bold;
  color: #ffffff;
  margin: 10px 0;
   text-shadow: 0 0 8px rgba(255, 0, 144, 0.8);
}

button {
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  background-color: #ff21b9;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 20px;
}

button:hover {
  background-color: #ffc6fa;
}

footer {
  margin-top: 50px;
}
