body {
  margin: 0;
  padding: 0;
  background-color: #202020;
  color: #f0f0f0;
  font-family: Montserrat, sans-serif;
  overflow-x: hidden;
}

h1 {
  text-align: center;
  font-size: 300px;
  background: -webkit-linear-gradient(#03fc6f 0%, #03fcdf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}

p {
  margin-top: 0;
  text-align: center;
  font-size: 30px;
}

a {
  margin: auto;
  text-align: center;
  text-decoration: none;
  color: #f0f0f0;
  font-size: 40px;
  padding: 0.6em;
  border-radius: 2em;
  position: relative;
  padding-right: 1.6em;
  background: #202020;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  width: 7.3em;
  margin-top: 1em;
}

a:hover::after {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

a::before {
  content: "";
  position: absolute;
  width: 102%;
  height: 108%;
  top: -4%;
  left: -0.8%;
  background: -webkit-gradient(linear, left top, right bottom, from(#03fc6f), to(#03fcdf));
  background: linear-gradient(to bottom right, #03fc6f 0%, #03fcdf 100%);
  border-radius: 2em;
  z-index: -1;
}

a::after {
  content: "";
  position: absolute;
  width: 102%;
  height: 108%;
  top: -4%;
  left: -0.8%;
  background: -webkit-gradient(linear, left top, right bottom, from(#03fc6f), to(#03fcdf));
  background: linear-gradient(to bottom right, #03fc6f 0%, #03fcdf 100%);
  border-radius: 2em;
  z-index: -2;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

svg {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 53%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 870px) {
  h1 {
    font-size: 100px;
  }
  p {
    font-size: 20px;
  }
  a {
    font-size: 20px;
  }
  svg {
    width: 20px;
    height: 20px;
  }
}
/*# sourceMappingURL=404.css.map */