body {
    background: radial-gradient(328px at 2.9% 15%, rgb(191, 224, 251) 0%, rgb(232, 233, 251) 25.8%, rgb(252, 239, 250) 50.8%, rgb(234, 251, 251) 77.6%, rgb(240, 251, 244) 100.7%);
    font-family: "Roboto", sans-serif;
}

a {
    color: #885df1;
}

.weather-app {
    background: white;
    max-width: 640px;
    margin: 60px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
}

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

.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: #EEB6F3;
    color: white;
    border: none;
    padding: 20px;
    line-height: 1;
    border-radius: 5px;
}

main {
    padding: 30px 0;
}

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

.current-city {
    font-size: 38px;
    font-weight: 900;
    margin: 0;
    line-height: 48px;
}

.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 {
    font-size: 48px;
    display: flex;
}

.current-temperature-icon {
    width: 95px;
    height: 88px;
}

.current-temperature-value {
    font-size: 80px;
    font-weight: bold;
    margin-left: 10px;
    line-height: 88px;  
}

.current-temperature-unit {
    font-size: 28px;
    margin-top: 7px;
}
.forecast {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.forecast-date {
    text-align: center;
    line-height: 20px;
    color: rgba(39, 33, 66, 0.4);
    font-size: 16px;
}
.forecast-icon {
    width: 88px;
    height: 88px;
    display: block;
    margin: 0 auto;}
.forecast-temperatures {
    text-align: center;
    color: #f65282;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}
.forecast-temperature {
    padding: 0 10px;
}



footer {
    border-top: 3px solid #f9f7fe;
    text-align: center;
    padding: 30px 0 0 0;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
}