#weather-forecast {
    text-align: center;
}

.current-weather {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    margin-bottom: 20px;
}
.current-weather-icon {
    width: 100px;
    height: 100px;
}
.current-weather-details > p {
	margin-bottom: 0 !important;
    text-align: left;
	text-transform: capitalize;
	line-height: initial;
}

.weather-forecast {
    margin-top: 20px;
}
.forecast-row {
	margin-top: 10px !important;
    display: flex;
    justify-content: center;
}
.forecast-row > .forecast-day:nth-child(2) {
	border-left: 1px solid #777;
	border-right: 1px solid #777;
}
.forecast-day {
    padding: 5px 15px;
    text-align: center;
}
.forecast-day img {
    width: 50px;
    height: 50px;
}
.forecast-weekday {
	margin-bottom: 0 !important;
	font-size: 14px;
}
.forecast-temps {
	margin-bottom: 0 !important;
	font-size: 14px;
}