body {
  margin: 0;
  font-family: Arial, sans-serif;

  background-image: url("clothes-bg.jpg");
  background-size: 900px;
  background-repeat: repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;

  transition: background-position 0.1s linear;
}

.container {
  text-align: center;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(5px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.2);
  width: 350px;
}

h1 {
  margin-bottom: 20px;
}

input {
  padding: 10px;
  width: 80%;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

button {
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background-color: #F0F1E199;
  transition: 0.3s ease;
  margin: 5px; /* added spacing */
}

button:hover {
  background-color: #EC41BA;
  color: white;
  transform: scale(1.05);
}

#weatherResult {
  margin-top: 25px;
  font-size: 18px;
}