* {
  font-family: "Inconsolata", monospace;
}

body {
  height: 100vh;
  background: url("img/bg.jpg") no-repeat center;
  background-size: cover;
  background-position: 0 -110px;
  overflow: hidden;
}

.container {
  margin-top: 10vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.title {
  color: #fff;
  font-size: 70px;
}

.content {
  display: flex;
}

.paw {
  width: 95px;
  height: auto;
}

.btn {
  cursor: pointer;
  font-family: "Inconsolata", monospace;
  margin: -15px 20px;
  width: 95px;
  height: auto;
  transition: all 0.3s;
}

.btn:hover {
  transform: scale(1.1);
  transition: all 0.3s;
}

.name {
  margin: 5px;
  color: #6e8d91;
  font-size: 19px;
}

.result {
  padding: 15px 30px;
  width: 240px;
  height: 20px;
  font-size: 20px;
  background: #fff;
  border-radius: 25px;
}

.search {
  position: relative;
  display: flex;
  justify-content: center;
}

.search input,
.search__droplist {
  height: 28px;
  font-size: 15px;
}

.search input {
  padding: 15px 30px;
  margin-top: -10px;
  border-radius: 25px;
  border-style: none;
  outline: none;
}

.search__icon {
  cursor: pointer;
  position: absolute;
  right: 14px;
  bottom: 8px;
  width: 14px;
  height: auto;
}

.search__droplist {
  padding: 15px 0;
  position: absolute;
  top: -10000px;
  opacity: 0;
  width: 95%;
  height: auto;
  text-align: left;
  background: #fff;
  border-radius: 11px;
  transform: scaleY(0);
  transform-origin: 50% 0%;
  transition: opacity 0.3s ease, transform 0.1s ease;
}

.search__droplist.active {
  top: 23px;
  transform: scaleY(1);
  opacity: 1;
}

.search__result {
  cursor: pointer;
  padding: 4px 30px;
  margin: 0;
  transition: all 0.3s ease;
}

.search__result:hover {
  color: #fff;
  background: #87b5ba;
}
