body {
  font-family: "Poppins", sans-serif;
  background-color: rgba(200, 200, 212, 0.877);
}
header {
  text-align: center;
  background: linear-gradient(0.25turn, #8589a5, #3f87a6);
  color: rgba(255, 255, 255, 0.61);
  border: black 1px solid;
}
.borderc {
  border: black 1px solid;
}
.forecast-card,
#main-card {
  border: black 1px solid;
  background-color: rgba(52, 64, 87, 0.904);
  color: rgba(255, 255, 255, 0.699);
  border-radius: 8px;
}

ul {
  list-style-type: none;
}
li {
  margin-left: 0%;
}
h3 {
  padding-top: 15px;
  margin-left: 20px;
}
input {
  width: 100%;
  height: 40px;
  margin-bottom: 8px;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#searchBtn {
  background-color: #3f87a6;
  color: rgba(255, 255, 255, 0.61);
  border-radius: 8px;
  display: flex;
}
#searchBtn:hover,
.previous-searches:hover {
  -webkit-box-shadow: 0px 0px 1px 2px #f2e1f2;
  -moz-box-shadow: 0px 0px 1px 2px #f2e1f2;
  box-shadow: 0px 0px 1px 2px #f2e1f2;
}
#searchBtn:active,
.previous-searches:active {
  font-size: 95%;
  box-shadow: 0 0 10px #000 inset;
}
#display-recent-search {
  margin-top: 20px;
  border-top: 3px solid;
  padding-top: 20px;
}
.previous-searches {
  border: black 1px solid;
  background-color: rgba(52, 64, 87, 0.904);
  color: rgba(255, 255, 255, 0.699);
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  height: 7%;
  width: 100%;
}
.UV-High {
  background-color: red;
  color: white;
  padding: 0px 12px;
  border-radius: 8%;
  font-size: 14px;
}
.UV-Med {
  background-color: yellow;
  color: white;
  padding: 0px 12px;
  border-radius: 8%;
  font-size: 14px;
}
.UV-Low {
  background-color: green;
  color: white;
  padding: 0px 12px;
  border-radius: 8%;
  font-size: 14px;
}
