body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(to right, #744caf, #f37c21);
}

.container {
  text-align: center;
}

.weather-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 30px rgb(255, 255, 255);
  transition: transform 0.3s ease-in-out;
  width: 90%;
  max-width: 500px;
}

.weather-card:hover {
  transform: scale(1.05);
}

#city-input {
  padding: 12px;
  margin: 10px 0;
  width: 80%;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

#city-input:focus {
  outline: none;
  border-color: #2196F3;
}

#city-input-btn {
  padding: 10px 20px;
  background-color: #2196F3;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

#city-input-btn:hover {
  background-color: #1565C0;
}

#weather-info {
  display: none;
  margin-top: 20px;
}

.weather-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.left-side {
  flex: 1;
}

.right-side {
  flex: 2;
  text-align: left;
}

#weather-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

#temperature {
  font-size: 24px;
  font-weight: bold;
  margin: 8px 0;
}

#description {
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

#wind-speed {
  font-size: 16px;
  color: #333;
}

#date {
  font-size: 14px;
  color: #888;
}
