* {
  padding: 0;
  margin: 0;
  transition: 0.3s;
}

a {
  text-decoration: none;
}

body {
  background: #515e63;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

section {
  display: flex;
  width: 100%;
  height: 100%;
  max-height: 700px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.btn-hover {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 300px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  margin: 20px;
  height: 45px;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  border-radius: 15px;
  transition: all 0.4s ease-in-out;
}

.btn-hover:hover {
  background-position: 100% 0;
  transition: all 0.4s ease-in-out;
}

.btn-hover:focus {
  outline: none;
}

.btn-hover.color-1 {
  background-image: linear-gradient(to right, #ff6611, #ffb433);
  box-shadow: 0 4px 15px 0 rgba(10, 10, 10, 0.75);
}

.btn-hover.color-5 {
  background-image: linear-gradient(to right, #ff6611, #ffb433);
  box-shadow: 0 4px 15px 0 rgba(10, 10, 10, 0.75);
}

.btn-hover.color-9 {
  background-image: linear-gradient(to right, #ff6611, #ffb433);
  box-shadow: 0 4px 15px 0 rgba(10, 10, 10, 0.75);
}

@media screen and (max-width: 768px) {
  section {
    flex-direction: column;
  }
}/*# sourceMappingURL=main.css.map */