* {
    font-family:Arial, Helvetica, sans-serif
}

header {
    color: white;
    text-align: center;
    background-color: blue;
    background-image: linear-gradient(to right, rgb(53, 53, 246) , rgb(30, 4, 47)); 
    padding: 1px; 
}
#user_area{
    background-color: white;
    height:fit-content;
    width: 100%;
    display: inline-flex;
}
#city_search_area{
    height:fit-content;
    width: 25%;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}
#city_search_input{
    width: 93%;
    margin: 10px;
    height: 30px;
}
#text_search_area{
    background-color: white;
    height: fit-content;
    width: 100%;
    margin-bottom: 20;
    border-bottom: 1px solid #000000;

}                    
#button_search_area{
    background-color:white;
    height: fit-content;
    width: 100%;
}
button{
    width: 95%;
    margin: 10px;
    height: 25px;
}
h2{
    margin: 0 0 0 10px;
    padding-top: 5px;
}
#output_area{
    background-color: white;
    height:fit-content;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 75%;
    margin: 10px;
}
#city_forecast{
    background-color:white;
    border: 1px solid #000000;
    height: 250px;
    width: 99%;
    margin-bottom: 5px;
    padding: 5px
}
#five_day_forecast{
    background-color: white;
    height: 230px;
    width: 99%;
    display: inline-flex;
    justify-content: space-between;
}
.card{
    color: white;
    width: 18%;
    height: inherit;
    margin-top: 10px;
    background-color: rgba(38, 38, 66, 0.945);
    padding:5px;
    border-color:white;
    border-width: 2px;
}
.city_card{
    line-height: 18px;
    padding-left: 5px;
}
