body {
    background-color: rgb(249, 239, 255);
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.weather-app {
    background: white;
    max-width: 700px;
    padding: 35px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 20px lightgrey;
    border-radius: 20px;
}

a {
    color: rgb(96, 0, 151);
}

header {
    padding: 0 0 30px 0;
    margin: 0 auto;
}

h1 {
    text-align: center;
}

.date-heading {
    text-align: center;
    font-size: 20px;
    color: rgb(90, 90, 90)
}

.search-form-input {
    background: rgb(249, 239, 255);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    padding: 15px 30px;
    max-width: 400px;
}

.search-form-button {
    background: rgb(96, 0, 151);
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    color: white;
}

.weather-app-data {
    display: flex;
    justify-content: space-between;
    color: rgb(90, 90, 90)
}

.weather-app-conditions {
    margin-top: 20px;
    justify-content: left;
    text-align: left;
}

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

.weather-app-icon {
    width: 80px;
    height: 80px;
}
.weather-app-temperature {
    font-size: 50px;
    font-weight: bold;
    line-height: 80px;
}

.weather-app-temperature-unit {
    margin-top: 20px;
}

strong {
    color: rgb(0, 156, 122);
}

.weather-forecast {
    display: flex;
    justify-content: space-around;
}

.weather-forecast-day {
    border: 3px;
    border-color:black;
    border-radius: 10px;
}

.weather-forecast-date {
    color: rgb(90, 90, 90);
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
}

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

.weather-forecast-temperatures {
    margin-top: 10px;
    color: rgb(0, 156, 122);
    text-align: center;
    display: flex;
    justify-content: space-evenly;
}

.weather-forecast-temperature {
display: block;
padding: 10px;
}

footer {
    text-align: center;
    padding: 30px 0 0 0;
    font-size: 12px;
    opacity: 60%;
}