body {
  background-color: #f9f7fe;
  font-family: "Roboto", sans-serif;
}

a {
  color: darkblue;
}

.weather-app {
  background: linear-gradient(
    rgba(255, 255, 255, 0.85),
    rgba(240, 240, 255, 0.75)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 16px;
  padding: 30px;
}

.language-label {
  display: block;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 18px;
  color: black;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(to right, #f9f7fe,#1A223B);
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}


.language-select {
  display: block;
  margin: 0 auto 30px auto;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Roboto', sans-serif;
  background: #f9f7fe;
  color: #333;
  max-width: 200px;
}

#greeting {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 16px;
  color: #4a3f7a;
  letter-spacing: 1px;
  text-align: center;
  margin: 20px auto;
  padding-bottom: 5px;
  border-bottom: 2px solid darkslategrey;
  width: max-content;
  animation: fadeIn 1.5s ease-in;
}


header {
  border-bottom: 1px solid #f9f7fe;
  padding: 0 0 30px 0;
}

.search-form-input {
  background-color: #f9f7fe;
  border: none;
  border-radius: 6px;
  width: 80%;
  font-size: 16px;
  padding: 15px 20px;
}

.search-form-button {
  background: black;
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  margin-left: 5px;
  border-radius: 6px;
  color: white;
}

main {
  padding: 30px 0;
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
}

.weather-app-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}

.weather-app-details {
  font-size: 16px;
  color: rgba(39, 33, 66, 0.4);
  line-height: 24px;
  font-weight: 500;
}

.weather-app-details strong {
  color: #f65282;
}

.weather-app-temperature-container {
  display: flex;
}

.weather-app-icon {
  width: 88px;
  height: 88px;
}

.weather-app-temperature {
  font-size: 88px;
  line-height: 88px;
  font-weight: bold;
}

.weather-app-unit {
  margin-top: 6px;
  font-size: 28px;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.weather-forecast-date {
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

.weather-forecast-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto;
}
.weather-forecast-temperatures {
  text-align: center;
  color: #f65282;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.weather-forecast-temperature {
  padding: 0 10px;
}

footer {
  border-top: 1px solid #f9f7fe;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}
.weather-quote {
  text-align: center;
  font-style: italic;
  margin-top: 20px;
  color: #4a3f7a;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
}

