/* default_server */

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

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

.card {
  pointer-events: all;
  position: relative;
  width: 32em;
  color: #bbb;
  text-align: center;
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0.6rem;
  position: relative;
  z-index: 1;
  background: rgba(0, 17, 34, 0.25);
  overflow: hidden;
}
.card a {
  color: #fff;
}
.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;
}

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