body {
    background-color: aliceblue;
    color: grey;
}

h1 {
    text-align: center;
    margin: 30px;
    padding-bottom: 10px;
    font-size: 3.5em;
}

.form {
    text-align: center;
    margin: 30px;
    padding-bottom: 10px;
}


#weather-location-title{
    text-align: center;
    font-size: 2.5em;
}

.weatherResults {
    text-align: center;
    margin: 30px;
    padding-bottom: 10px;
}

.weatherInfo {
    display: block;
}

.info-div {
    margin-left: 30px;
}

#day-forecast-title {
    text-align: center;
    margin: 50px;
}

.date-time-title, .today-info-title{
    font-weight: normal;
}

.date-time-div {
    margin-left: 30px;
}

.footer {
    font-size: 1em;
    opacity: .25;
    text-align: center;
    padding-top: 1.5em;
    padding-bottom: 1em;
    margin-top: 1em;
    transition: opacity 1s ease-in-out;
    border-top: 2px solid darkgray;
}

/*small screens*/
@media only screen and (max-width: 1023px) {
    #weather-location-title{
        font-size: 3em;
    }
}

@media only screen and (min-width: 1024px) {

}