:root {
  --sideColor: #4d5c5f;
}

html,
body {
  margin: 0;
  height: 100%;
}
body {
  color: #19211c;
  background-image: url(weatherBackground.jpg);
  margin: 0 10px;
  height: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.today {
  background-color: #19211c;
  margin-left: 28%;
  padding: 20px;
  line-height: 20px;
  color: aliceblue;
  text-align: center;
  display: none;
}
header {
  color: #303834;
  text-align: center;
  padding: 30px;
}
h1 {
  margin: 0;
}
.sideForm {
  color: #000000;
  float: left;
  width: 25%;
  height: calc(100% - 130px);
  background-color: #4d5c5f61;
  flex-direction: column;
  padding: 10px;
}
#searchForm {
  display: flex;
  flex-direction: column;
}
#searchInput {
  padding: 12px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 3px #ddd;
  margin: 15px 0;
}
h2 {
  text-align: center;
}

.infoCard {
  margin: 5px 15px;
  transition: 1000ms;
  padding: 5px;
  background-color: #f0f8ff88;
  border: 1px solid #686868;
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.infoTop {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.infoCard:hover {
  transition: 200ms;
  background-color: #f0f8ffc9;
  box-shadow: 5px 10px 18px #131313;
}
ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

button {
  transition: 400ms;
  border: 1px solid white;
  margin: 10px 0;
  min-width: 140px;
  height: 40px;
  font-size: 1.1em;
  background-color: #20355fb6;
  color: #9d9d9db6;
  cursor: pointer;
}

button:hover {
  transition: 200ms;
  border: 1px solid black;

  background-color: #9d9d9d;
  color: #20355f;
}
.results {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
button {
  border-radius: 5px;
}
#disTitle {
  display: none;
}
