body {
  width: 100vw;
  height: 100vh;  
  background: #f9f7fe;
  font-family: "Roboto", sans-serif;
  background-size: cover;
  }
  
  a {
    color: #885df1;
  }
  
  .weather-app {
    background: rgba(247, 245, 245, 0.847);
    max-width: 600px;
    margin: 60px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  }

  header {
    border-bottom: 1px solid #f9f7fe;
    padding-bottom: 30px;
  }
  
  .search-input {
    background-color: #f9f7fe;
    border: none;
    color: rgba(39, 33, 66, 0.4);
    font-size: 16px;
    padding: 20px;
    width: 75%;
    border-radius: 6px;
  }
  
  .search-button {
    margin-left: 5px;
    font-size: 16px;
    background-color: #885df1;
    color: white;
    border: none;
    padding: 20px;
    line-height: 1;
    border-radius: 5px;
  }
  
  main {
    padding: 30px 0;
  }
  
  .current-temperature {
    font-size: 48px;;
  }
  
  .current-weather {
    display: flex;
    justify-content: space-between;
  }
  
  .current-city {
    font-size: 38px;
    font-weight: 600;
    margin: 0;
  }
  .current-details {
    color: rgba(39, 33, 66, 0.4);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  
  .current-details strong {
    color: #f65282;
  }
  
  .current-temperature-icon {
    top: -8px;
    margin-right: 10px;
    margin-bottom: 0px;
  }
  
  .current-temperature-value {
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .current-temperature-unit {
    font-size: 28px;
    position: relative;
    top: -38px;
  }

  .weather-forecast {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.weather-forecast-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f1eff5;
  opacity: 0.8;
}

.weather-forecast-date {
  font-size: 24px;
  color: #272142;
}

.weather-forecast-icon {
  width: 60px;
  height: 60px;
  margin: 0 20px;
}

.weather-forecast-temperatures {
  display: flex;
  gap: 6px;
  font-size: 24px;
  color: #272142;
  min-width: 70px;
  justify-content: flex-start;
}

.weather-forecast-temperature:last-child {
  color: rgba(39, 33, 66, 0.5);
}


  footer {
    border-top: 1px solid #f9f7fe;
    text-align: center;
    padding-top: 15px;
    font-size: 14px;
  
    color: rgba(39, 33, 66, 0.4);
  }
  