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

a {
    color: #885df1;
}

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

}

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


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

main {
    padding: 30px 0;
}

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

}

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

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

.weather-app-temp-container {
    display: flex;
}

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

.weather-app-temp {
    font-size: 88px;
    font-weight: bold;
    margin-left: 10px;
    line-height: 100px;
}

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

}

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

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

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

.weather-forecast-temp {
    padding: 0 10px;

}

#max-temp{
    font-weight: bold;
}


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

/*.roboto-<uniquifier> {
  
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}*/