:root {
    
}

body {
    font-family: Georgia;
}

.header {
    display: flex;
    width: 100%;
    /* height: 5%; */
    font-size: 30pt;
    color: white;
    text-shadow: 2px 2px #000000;
    box-shadow: 0px 0px 10px 2px black;
    justify-content: center;
    /* margin-bottom: 10px; */
    background: linear-gradient(-45deg, #5788fa, #0202fe, #23a6d5, #1406d5);
}

.page {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}

.leftSideBar {
    /* width: 15%; */
    /* height: 800px; */
    margin-left: 20px;
    margin-top: 20px;
}

.custom-btn-search {
    background-color:#0202fe;
    box-shadow: 0px 0px 10px 2px black;
}

.custom-btn {
    margin-top: 10px;
    box-shadow: 0px 0px 10px 2px black;
    background-color:#02aefe;
    font-weight: bold;
    text-transform: capitalize;
}

.custom-btn-search {
    background-color: rgb(238, 11, 11);
    color: var(--c-dblue);
    font-weight: bold;
  }

.searchHistoryText {
    margin-top: 10px;
    
    border: solid 1px black;
    /* box-shadow: 0px 0px 10px 2px black; */
    text-align: center;
}
.selectedCity {
    display: flex;
    flex-wrap: wrap;
    width: 83%;
    height: 50%;
    margin: 10px;
    padding: 1%;
    /* border: 2px solid black; */
    justify-content: space-between;
}

.currentConditions {
    text-transform: capitalize;
}

.currentWind {
    text-transform: capitalize;
}

.selectedCityCurrent {
    background-color: rgb(79, 65, 229);
    width: 100%;
    height: 40%;
    border: solid 1px black;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px black;
    padding: 7px;
    /* text-shadow: 1px 1px #fffbfb; */
    /* border: solid 2px black; */
}

.fiveDayBox {
    display: flex;
    flex-wrap: wrap;
    
}

#forecast {
    /* display: flex; */
    /* flex-wrap: wrap; */
}


.day1 {
    background-color: rgb(16, 203, 231);
    width: 244px;
    height: 460px;
    color: black;
    padding: 10px;
    border: solid 1px black;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px black;
    margin: 0px 20px 20px 0px;
    text-transform: capitalize;
}

.day2 {
    background-color: rgb(16, 203, 231);
    width: 244px;
    height: 460px;
    color:black;
    padding: 10px;
    border: solid 1px black;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px black;
    margin: 0px 20px 20px 20px;
    text-transform: capitalize;
}

.day3 {
    background-color: rgb(16, 203, 231);
    width: 244px;
    height: 460px;
    color:black;
    padding: 10px;
    border: solid 1px black;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px black;
    margin: 0px 20px 20px 20px;
    text-transform: capitalize;
}

.day4 {
    background-color: rgb(16, 203, 231);
    width: 244px;
    height: 460px;
    color:black;
    padding: 10px;
    border: solid 1px black;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px black;
    margin: 0px 20px 20px 20px;
    text-transform: capitalize;
}

.day5 {
    background-color: rgb(16, 203, 231);
    width: 244px;
    height: 460px;
    color:black;
    padding: 10px;
    border: solid 1px black;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px black;
    margin: 0px 20px 20px 20px;
    text-transform: capitalize;
}

.this {
    border-style: solid;
    border-color: black;
}

#currentUV {
    width:fit-content;;
    /* outline: solid 1px black; */
    border-radius: 10px;
    font-weight: bold;
    padding:1px;
}

.low {
    background-color: green;
    border-radius: .1em;
  }
  
  .medium {
    background-color: orange;
    border-radius: .1em;
  }
  
  .high {
    background-color: red;
    border-radius: .1em;
  }
  