* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*Body HTML Styling*/

body {
    font-family: 'BIZ UDPGothic', sans-serif;
}


h1 {
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 3px;
    color: white;
}

p {
    color: #161514;

}

h2,
h3,
h4,
h5 {
    color: #0c0c0d;
}



/*nav bar styling*/
.navbar {
    height: 100px;
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(50, 185, 230, 1) 28%, rgba(2, 66, 169, 1) 100%);
}

/*extra stylings*/
#weatherContent {
    width: 60%;
}

#searchResults {
    height: 100vh;
}

#current-name {
    border: 1px solid rgba(2,0,36,1);
    border: solid 2px #0242a9;
    box-shadow: 8px 8px 6px rgba(0, 0, 0, .5);
}

#searchHistory .list-group-item {
    margin: 5px;
    border: solid 1px #0242a9;
    box-shadow: 4px 4px 2px rgba(0, 0, 0, .5);

}

#enterCity {
    border: solid 1px #0242a9;
}

.card_body {
    margin: 10px;
    color: white;
    font-weight: bold;
    border: 1px solid rgba(2,0,36,1);
    border: solid 2px #0242a9;
    box-shadow: 8px 8px 6px rgba(0, 0, 0, .5);
    animation: name-of-animation 3s;
    padding: 10px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.temp{
    font-weight: 400;
}


.card {
    border: none;
}



@keyframes name-of-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#forecast_card {
    display: flex;
}




#fiveDay .card {
    padding: 20px;

}

#searchHistory li {
    background-color: #97A6A4;
    color: #e7e7ed;
    font-weight: bold;
}


/*icons*/
.weather_icon {
    width: 45%;
    height: auto;
  margin-left: 25px;
}

.current_weather_icon {
    width: 10%;
    height: auto;
}

#cityDetail{
    font-size: 15px;
    font-weight: bold;
}

.uv-condition {
    font-size: 15px;
    font-weight: bold;
    padding: 3px;
    width: 15%;
    box-sizing: border-box;
    border-radius: 5px;
    color: white;
    /* box-shadow: 2px 2px 6px rgba(0, 0, 0, .5); */
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}