*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: "Montserrat", sans-serif;
  font-size: 62.5%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #333;
}

.btn {
  position: relative;
  padding: 20px 40px;
  border: 3px solid #fff;
  border-radius: 0.4em;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 5rem;
  color: #fff;
  background-color: #333;
  cursor: pointer;
  overflow: hidden;
  z-index: 0;
}
.btn::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: -350px;
  width: 100%;
  height: 100%;
  transform: skew(-45deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 10%, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0.2) 30%, rgb(255, 255, 255) 40%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0.4) 80%, rgba(255, 255, 255, 0.2) 90%, rgba(255, 255, 255, 0) 100%);
  transition: left 0.5s;
  z-index: -1;
}
.btn:hover::before {
  left: 350px;
}/*# sourceMappingURL=main.css.map */