body {
    background-color: #5e465c;
    font-family: "Roboto", sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
}

a {
  color: #885df1;
}

.weather-app {
  background: rgb(224, 218, 223);
  backdrop-filter: blur(10px);
  max-width: 800px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}
.weather-app:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 60px rgba(65, 50, 100, 0.15);
}

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

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

.search-form-button {
  background: #885df1;
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  margin-left: 5px;
  border-radius: 6px;
  width: 20%;
  color: white;
}
.search-form-button:hover {
  background: #6c43d1;
  transform: scale(1.02);
  cursor: pointer;
}
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: #e218d1;
}

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

.weather-app-icon {
  font-size: 44px;
  margin-top: 22px;
}

.weather-app-temperature {
  font-size: 88px;
  margin-left: 10px;
  font-weight: bold;
  transition: all 0.5s ease;
}

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

.weather-app-forecast {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.weather-app-forecast-date{
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}
.weather-app-forecast-icon{
  text-align: center;
  font-size: 38px;
}
.weather-app-forecast-temperatures{
  text-align: center;
  color: #f65282;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.weather-app-forecast-temperature{
  padding: 0 10px;
}
footer {
  border-top: 1px solid #f9f7fe;
  padding: 30px 0 0 0;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
