
/* Header */

header {
    background-color: teal;
}

div.title {
    
    color: white;
    text-align: center;
}

div.title h1 {
    padding: 10px;
}

/* Main content */

main.dashboard {
    background-color: rgb(247, 247, 247);
}

/* Left Sidebar */

div.recent-searches h2 {
    font-size: 1.2rem;
}

div.cityList {
    margin-top: 20px;
}

div.city {
    padding: 10px;
}

div.cityName {
    background-color: rgb(136, 199, 199);
    color: white;
    
}

/* Weather Data */

div.currentWeather {
    margin-bottom: 20px;
    background-color: rgb(209, 243, 243);
}

div.currentWeather h2,
div.currentWeather h3 {
    font-size: 1.3rem;
    margin: 10px;
}

span#uv-index {
    color: white;
}

div.fiveDay h2 {
    font-size: 1.2rem;
}

div.fiveDay p {
    font-size: .8rem;
}

div.fiveDay p.card-title {
    font-weight: bold;
}