#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.wrapper {
  position: relative;
  z-index: 0;
}

html, body {
  padding: 0;
  margin: 0;
  height: 100%;
  overflow: hidden;
  font-family: "Helvetica", sans-serif;
  background-color: #327dbc;
}
html .wrapper, body .wrapper {
  background-image: url("../images/background.jpg");
  background-color: #ccc;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
html .inner, body .inner {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
html .inner a:link, html .inner a:visited, body .inner a:link, body .inner a:visited {
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.2s, border-color 0.2s;
}
html .inner a:hover, html .inner a:active, body .inner a:hover, body .inner a:active {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}
html footer, body footer {
  text-align: center;
  padding: 10px 20px 20px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  line-height: 1.6;
}
html footer p, body footer p {
  margin: 0;
}

/*# sourceMappingURL=style.css.map */
