* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* font-size: 62.5%; */
}

body{
    font-size: 1.5rem;
 
}

.header {
    background-color: rgb(83 83 83);
    color: white;
    text-align: center;
    padding:10;
    font-size: 2.4rem;
}

main {
    font-size: 1.6rem;
    display: flex;
    justify-content: space-between;
}
/* -------------------------------------- */

.search-container {
    border: 1px solid black;
    flex: 1;
    background-color: rgb(9, 81, 152);
    padding: 0 10px;
    height: 100vh;
}

#search-input {
    width: 100%;
}

#search-button {
    width: 100%;
}

/* -------------------------------------- */

.weather-container {
    background-color: #999;
    display: flex;
    flex-direction: column;
    justify-content:space-around;
    flex: 3;
    /* background-color: aqua; */
    padding: 0 10px;
    height: 100vh;

    /* justify-content: space-between; */
}

.current-weather {
    border: 1px solid #888;
    height: 45%;
}

.five-day-forecast {
    border: 1px solid #888;
    height: 45%;
}

.card-body{
    background-color: #e0c308;
}

.low {
    background-color: green;
}

.moderate {
    background-color: yellow;
}

.extreme {
    background-color: red;
}
