body {
  margin: 0;
  padding: 0;
  background-color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  overflow-y: auto;
}

.container {
  background-image: url("https://i.pinimg.com/736x/fa/da/f3/fadaf39be526369318c78b71432a6ce3.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  min-height: 85vh;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.container * {
  color: white;
}

input[type="text"],
button {
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  margin: 10px 5px 20px 0;
}

input[type="text"] {
  width: 65%;
  background: rgba(255, 255, 255, 0.8);
  color: black;
}

button {
  background-color: lightblue;
  color: black;
  cursor: pointer;
  font-size: 20px;
  margin: 10px 5px 20px 0;
}

button:hover {
  background-color: blue;
}
h1 {
  text-align: center;
  font-style: italic;
  font-size: 30px;
  color: white;
}
.Weather-info {
  text-align: center;
  margin-top: -10px;
  font-size: 30px;
  font-style: italic;
  color: white;
}
.row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
}

.row1 .inner-container1,
.row1 .inner-container2 {
  flex: 1;
  min-height: 120px;
  padding: 20px;
  max-width: 300px;
}

.row2 .inner-container3,
.row2 .inner-container4,
.row2 .inner-container5 {
  width: 100px;
  padding: 15px;
  text-align: center;
}

.inner-container1,
.inner-container2,
.inner-container3,
.inner-container4,
.inner-container5 {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid lightskyblue;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
form {
  text-align: center;
}
.Audi2 {
  text-align: center;
  font-style: italic;
  font-size: 22px;
}
footer {
  color: white;
  font-style: italic;
  text-align: center;
  font-weight: bold;
}
footer a {
  color: white;
  text-decoration: underline;
}
footer a:hover {
  color: orangered;
}
footer a:visited {
  color: white;
}
.container.dark {
  background-image: url("https://i.pinimg.com/736x/29/54/ae/2954aec9fde77ad629667ee945c96e17.jpg");
  background-size: cover;
  background-position: center;
}
#forecast {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
}

.Audi2 {
  text-align: center;
  font-style: italic;
  font-size: 22px;
}
.heat {
  color: red;
  font-weight: bold;
}
.cold {
  color: blue;
  font-weight: bold;
}

