body {
    background: linear-gradient(to top, #3b41c5 0%, #a981bb 49%, #ffc8a9 100%);
    background-attachment: fixed;
    font-family: "quicksand", sans-serif;
}

a {
    color: #3b41c5;
}


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

.search-input {
    background-color: rgb(224, 232, 240, 0.4);
    border: none;
    color: rgb(51, 62, 80, 0.5);
    font-size: 16px;
    padding: 20px;
    width: 83%;
    border-radius: 6px;
    font-family: "quicksand";
}

.search-button {
    margin-left: 5px;
    font-size: 16px;
    background-color: #3b41c5;
    color: white;
    border: none;
    padding: 20px;
    line-height: 1;
    border-radius: 10px;
    font-family: "quicksand";
}

.present-temperature-information {
    background: white;
    margin: 20px auto;
    padding: 30px;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
}
main {
    padding: 30px 0;
}

.temp-today-text {
    color: rgba(39, 33, 66, 0.4);
    font-weight: bold;
}

#humidity-value {
    color: #8d6c9c;
    font-weight: 700;
}

#windspeed-value {
    color: #8d6c9c;
    font-weight: 700;

}
.current-temperature {
    font-size: 48px;
}

.current-weather {
    display: flex;
    justify-content: space-between;
}

.current-city {
    font-size: 38px;
    font-weight: 900;
    margin: 0;
    margin-top: 10px;
    font-family: "lexend";
}

.current-details {
    color: rgba(39, 33, 66, 0.4);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;

}

.current-details strong {
    color: #333861;
}

.current-temperature-icon {
    position: relative;
    top: 9px;
    margin-right: -1px;
}

.current-temperature-value {
    font-size: 80px;
    font-weight: bold;
    font-family: "lexend";

}

.current-temperature-unit {
    font-size: 28px;
    position: relative;
    top: -38px;
    font-family: "lexend";
}

.weather-forecast {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.weather-forecast-date {
    text-align: center;
    color: rgba(39, 33, 66, 0.4);
    line-height: 24px;
    font-size: 16px;
}

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

.weather-forecast-temps {
     text-align: center; 
     padding: 5px;
     font-size: 16px;

}

.weather-forecast-high-temp {
    color: #a981bb;
    font-weight: bold;
}

.weather-forecast-low-temp {
        color: rgb(169, 129, 187, 0.4);
        font-weight: bold;
}

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