body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c2b2b;
  margin: 0;
  padding: 0;
  background: 
  linear-gradient(rgba(255, 255, 255, 0.7)),
    url("clouds.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
body, html {
  height: 100%;
  margin: 0;
  padding: 0;
}
main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh; 
  padding: 20px;
}
a {
  color: #4e0342;
  text-decoration: none;
}

.weather-app {
  background-image: url("clouds.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  overflow: hidden;
  margin: 40px auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 25px;
}
.weather-app::before {
  pointer-events: none;
  content: "";
  position: absolute;
   top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 243, 254, 0.3);
  border-radius: 16px;
  z-index: 0;
}


header {
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

 .search-form-input {
  margin-top: 40px;
  background-color: #f9f7fe;
  border: none;
  border-radius: 6px;
  width: 55%;
  font-size: 16px;
  padding: 12px 18px;
  position: relative;
  z-index: 1;
}

.search-form-button {
  background: #b82286;
  padding: 12px 18px;
  border: none;
  font-size: 16px;
  margin-left: 5px;
  border-radius: 6px;
  color: #f9f7fe;
  cursor: pointer;}

.search-form-button:hover {
  background-color: #8d4073;
}
main {
  padding: 20px 0;
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.weather-app-city {
  margin: 0;
  font-size: 40px;
  color: #59075c;
  line-height: 1.3;
   }

#time {
  color: rgba(11, 5, 34, 0.7); 
  font-weight: 700;
}

.weather-app-details {
  font-size: 18px;
  color: rgba(39, 33, 66, 0.4);
  line-height: 24px;
  font-weight: 600;
  display:inline-block;
}

.weather-app-details strong {
  color: #911021;
}

.weather-app-temperature-container {
  display: flex;
  align-items: center;
  }

.weather-app-icon {
 width: 70px;
height: 70px;
margin-top: 10px;
 }

 #icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.weather-app-temperature {
  font-size: 70px;
  margin:0 10px;
  margin-top: 5px;
  font-weight: bold;
     
}

.weather-app-unit {
  color: #660351;
   margin:auto;
  font-size: 32px;
 
}

.forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #ccc;
  text-align: center;
}

.forecast-day {
  flex: 1;
}

.forecast-day-name {
  font-weight: bold;
  color: #27014b;
}

.forecast-icon {
  width: 50px;
  height: 50px;
  margin: 5px auto;
}

.forecast-temperatures {
  font-size: 16px;
  color: #242323;
}

.forecast-temp-max {
  font-weight: bold;
}
footer {
  border-top: 1px solid #fdcef3;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
footer a {
  color: #690358;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

  @media (max-width: 600px) {
  .weather-app {
    margin: 20px;
    padding: 20px;
  }
  }