/* Background */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-image: url(./ra.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main Container */
.container {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 15px;
  width: 350px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  color: darkblue;
}

/* Heading */
#heading {
  font-size: 28px;
  margin-bottom: 10px;
}

/* Input */
#city-input {
  width: 90%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
  margin: 10px 0;
  font-size: 14px;
}

/* Button */
#searchbutton {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: #ff7eb3;
  color: black;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

/* Button Hover */
#searchbutton:hover {
  background: #ff4d94;
  transform: scale(1.05);
}

/* Result Box */
.result {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  background: rgba(255,255,255,0.2);
}

/* City Name */
#city-name {
  font-size: 22px;
  margin-bottom: 10px;
}

/* Weather Type */
#weather-type {
  font-size: 30px;
  margin-bottom: 10px;
}

/* Temperature Section */
.result h3 {
  margin: 5px 0;
  font-weight: 400;
}

/* Highlight temp */
#temp {
  font-size: 22px;
  font-weight: bold;
  color:  #ff4d94;
}