html, body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

body {
  background: #FFFFFF;
  display: flex;
  //align-items: center;
  //justify-content: center;
  -webkit-font-smoothing: antialiased;
  -webkit-font-kerning: normal;
  -webkit-text-size-adjust: 100%;
}

.Button-wrapper {
  position: relative;
}

.Button {
  font-family: "Gilroy ExtraBold", system-ui, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 2px;
  font-size: 22px;
  line-height: 68px;
  text-transform: uppercase;
  background: #112477;
  color: #FFFFFF;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 10px;
  min-width: 200px;
  padding: 0 24px;
  box-shadow: 0 10px 60px -10px #001144;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transform-style: preserve-3d;
  transform: perspective(250px) scale3d(1, 1, 1);
  transition: all 1s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  will-change: transform, box-shadow, background;
  outline: none;
  position: relative;
  z-index: 2;
}
.Button:hover {
  background: #117722;
  box-shadow: 0 8px 65px -5px #66dd66;
}
.Button:active {
  background: #DDDDFF;
  box-shadow: 0 10px 60px -10px #DDDDFF;
  transform: perspective(250px) scale3d(1, 1, 1) translateY(5%) !important;
}

.Symbol {
  position: absolute;
  width: 10px;
  height: 10px;
  z-index: -1;
  animation: explode 0.8s reverse forwards ease-in;
}

@-webkit-keyframes explode {
  from {
    opacity: 0;
  }
  to {
    top: 50%;
    left: 50%;
    opacity: 1;
  }
}

@keyframes explode {
  from {
    opacity: 0;
  }
  to {
    top: 50%;
    left: 50%;
    opacity: 1;
  }
}