body {
    font-family: "Roboto", sans-serif;
    background: #f9f7fe;
}

a {
    color: #885df1;
}

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

main {
    padding: 30px 0;
}

.main-app-container {
    background-color: #fff;
    max-width: 600px;
    border-radius: 16px;
    padding: 30px;
    margin: 0 auto;
    margin-top: 80px;
}

.form-input {
    display: flex;
    align-items: center;

}

.search-input {
    background: #f9f7fe;
    border: none;
    border-radius: 6px;
    width: 80%;
    font-size: 18px;
    padding: 15px 30px;
    flex: 1;
}

.search-button {
    background: #885df1;
    padding: 15px 30px;
    border: none;
    font-size: 18px;
    margin-left: 5px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
}

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

.temperature-app {
    display: flex;
}

.city-data-information {
    margin: 0;
    font-size: 40px;
    line-height: 48px;
}

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

.app-temperature-information strong {
    color: #f65282;
}

.app-temperature-container {
    display: flex;

}

.weather-temprature {
    font-size: 88px;
    margin: 10px;
    font-weight: bold;
}

.app-unit-measurement {
    margin-top: 16px;
    font-size: 28px;
}

.weather-app-icon {
    width: 88px;
    height: 88px;
}

#app-icon-display {
    font-size: 44px;
    margin-top: 22px;
}

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

.weather-forecast-temperatures{
    text-align: center;
    color: #f65282;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.weather-forecast-icon{
    font-size: 38px;
    text-align: center;

}

.weather-forecast-temp{
    padding: 0 10px;
}
.weather-forecast-date{
    text-align: center;
    color: rgba(39, 33, 66, 0.4);
    font-size: 16px;
    line-height: 20x;
    margin-bottom: 10px;
}
footer {
    border-top: 1px solid #f9f7fe;
    font-size: 14px;
    padding: 30px 0 0 0;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
}