nav {
    background-color: rgb(58, 51, 51);
}

/* style the search icon over the button  */
#searchIcon {
    margin: 0;
    padding: 0;
}

/* align the header  */
#header {
    text-align: center;
    color: white;
}

/* style border around current weather conditions  */
#cityData {
    margin-top: 2%;
    border: gray;
    border-style: solid;
    border-radius: 15px;
}

/* style font for city and current date  */
#cityAndDate {
    /* float: left; */
    font-size: 30px;
    font-weight: 800;
    text-align: left;
    margin-right: 0;
    padding-right: 0;
}

/* remove margins and padding for current weather icon  */
#todayImg {
    margin: 0;
    padding: 0;
}


/* style the weather conditions  */
#temperature, #humidity, #windSpeed, #UVIndex {
    font-size: 18px;
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 2%;
}
/* style the search history boxes  */
#searchHistory {
    padding-top: 25px;
}

/* keep the UV index close to the value of the UV index  */
#UVIndex {
    margin-right: 0;
}

/* each of these classes changes the color of the uV index  */
.hiUV {
    background-color: red;
    border-radius: 5px;
    color: white;
    width: 40px;
    font-size: 15px;
    text-align: center;
}

.medUV {
    background-color: rgb(224, 173, 5);
    border-radius: 5px;
    color: white;
    width: 40px;
    font-size: 15px;
    text-align: center;
}

.lowUV {
    background-color: green;
    border-radius: 5px;
    color: white;
    width: 40px;
    font-size: 15px;
    text-align: center;
}

p {
    font-size: 20px;
    /* float: left; */
}

/* style the font for the search history  */
.history {
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 0;
    border-color: gray;
    background-color: transparent;

}

/* style the text for the five day forecast  */
#FiveDayText {
    font-size: 24px;
    font-weight: 800;
}
/* style the boxes for each forecast day  */
.FiveDayForecast{
    text-align: center;
    background-color: rgb(36, 87, 226);
    color: white;
    font-weight: 600;
    border-radius: 4%;
    margin: 1%;
    padding-top: 1%;
    padding-bottom: 1%;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#date {
    font-size: 20px;
    font-weight: 700;
}

/* two classes as a hide/show toggle  */
.hidden {
    display: none;
}

.show {
    display: block;
}