body {
  background-color: #123;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.wrapper {
  position: absolute;
  top: 0;
  width: 98%;
  height: 98%;
  pointer-events: none;
  display: grid;
  place-items: center;
  align-items: center;
  justify-items: center;
}

.card {
  pointer-events: all;
  position: relative;
  width: 90%;
  max-width: 460px;
  color: #aaa;
  text-align: center;
  background: rgba(17, 34, 51, 0.15);
  box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(64, 96, 64, 0.4);
  border-radius: 0.6rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.card:before {
  content: "";
  position: absolute;
  background: inherit;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  margin: -20px;
}
.card .card-heading {
  text-align: center;
  font-size: x-large;
  font-weight: bold;
  padding: 0.4em;
}
.card .card-content {
  text-align: center;
  padding: 0.4em 0.6em;
}
.card .card-content div {
  margin-bottom: 1em;
}
.card .card-content div:last {
  margin: 0;
}
.card a, .card a:visited, .card a:link, .card a:hover {
  color: #fff;
}

#particles {
  position: absolute;
  width: 98%;
  height: 98%;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}/*# sourceMappingURL=style.css.map */