body {
    background: #ffcbcb;
  font-family: "Winky Rough", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}

a {
    color: #ffcbcb;
}

main {
    padding: 30px 0;
}

.weatherapp {
background: white;
color: #407088;
max-width: 600px;
margin: 30px auto;
box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
border-radius: 15px;
padding: 30px;
}

.search-form-input {
    background-color: #ffcbcb;
    border: none;
    border-radius: 6px;
    width: 80%;
    padding: 15px 30px;
    font-size: 16px;
    font-family: "Winky Rough", sans-serif;
}

.search-form-button {
    background: #132743;
    padding: 15px 25px;
    border: none;
    border-radius: 6px;
    color: white;
    margin: 2px;
    font-family: "Winky Rough", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
}
.city-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.temp-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.weather-city {
    font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 70px;
  margin: 0;
  line-height: 65px;
}

.weather-details {
    font-size: 18px;
    line-height: 20px;
}

.weather-details strong {
    color: #ec0d6e;
}
.weather-icon {
    width: 90px;
    height: 90px;
    margin-top: 10px;
}
.weather-temp {
    font-size: 70px;
    margin-left: 10px;
    line-height: 100px;
}

.weather-unit {
    font-size: 35px;
}

.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: 20px;
    line-height: 20px;
    margin-bottom: 10px;
}

.weather-forecast-icon {
   width: 65px;
   height: 65px;
   display: block;
   margin: 0 auto;
}

.weather-forecast-temperatures {
    text-align: center;
    color: #ec0d6e;
    display: flex;
    justify-content: center;
}

.weather-forecast-temperature {
    padding: 0 10px;
}
footer {
    color: #132743;
    font-size: 13px;
    text-align: center;
   line-height: 150px;
}