html {
  background-color: rgb(14, 47, 54);
}

.bgcontainer {
  position: fixed;
  color: white;
  width: 100%;
  height: 95vh;
}

#bg {
  opacity: 0.6;
  filter: blur(8px);
  width: 110vw;
  height: 110vh;
  top: -2%;
  left: -2%;
  position: fixed;
  z-index: -1555555;
}

.resize-drag {
    color: rgb(255, 0, 0);
    font-size: 15px;
    font-family: sans-serif;
    padding: 1px;
    margin: 30px 30px;
    width: 220px;
    box-sizing: border-box;
    overflow: hidden;
}

#search-input {
  background-color: rgb(0, 118, 118);
  color: rgb(255, 243, 222);
  border-radius: 5px;
  padding: 0% 0%;
  font-size: 16px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  outline: none;
}

.button {
  color: black;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  border: none;
  cursor: pointer;
  padding: 0% 1%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  outline: none;
  border-radius: 6px;
  -webkit-transition-duration: 0.4s;
 /* Safari */
  transition-duration: 0.4s;
  margin: 0.4% 1%;
  background-color: aquamarine;
}

.button:active {
transform: scale(0.8);

}
.button:hover {
box-shadow: 0 12px 16px 0 rgba(127, 255, 212, 0.638), 0 17px 50px 0 rgba(127, 255, 212, 0.83);
}