body {
    background-color: #f9f7fe;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

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

a {
    color: #885df1;
}

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

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

.search-form-button {
    background-color: #885df1;
    border: none;
    padding: 15px 30px;
    width: 18%;
    border-radius: 6px;
    font-size: 16px;
    color: white;
    margin-left: 5px;
}

.weather-app-city {
    font-size: 38px;
    line-height: 48px;
}

.weather-app-details {
    color: rgba(39, 33, 66, 0.4);
    line-height: 24px;
    font-size: 16px;
    font-weight: 500;
}

.humidity {
    color: #f65282;
}

.wind {
    color: #f65282;
}

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

.weather-app-temperature-container {
    display: flex;
    margin-top: 20px;
}

.weather-app-temperature {
    font-size: 88px;
    margin-left: 10px;
    font-weight: bold;
}

.weather-app-icon {
    width: 100px;
    height: 20px;
    margin-top: 10px;
}

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

.weather-app-forecast {
    display: flex;
    justify-content: space-between;
    margin: 30px auto;
    padding: 20px;
}

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

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

.forecast-icon {
    width: 100%;
    text-align: center;
    margin: 10px 0 10px 0;
}

.forecast-lower-temperature {
    padding-left: 15px;
}

.forecast-upper-temperature {
    font-weight: bold;
}

footer {
    border-top: 1px solid #f9f7fe;
    padding-top: 30px;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 30px;
}