body {
  margin: 0;
  min-height: 100vh;
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: x-small;
}

body::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  background: transparent;
  -webkit-backdrop-filter: blur(12px) brightness(0.68);
  backdrop-filter: blur(1px) brightness(0.68);
  -webkit-mask-image: radial-gradient(circle 48% at 50% 37.5%, #000 0%, #000 32%, transparent 100%);
  mask-image: radial-gradient(circle 48% at 50% 37.5%, #000 0%, #000 32%, transparent 100%);
  content: "";
  pointer-events: none;
}

body::after {
  position: fixed;
  z-index: 1;
  inset: 0;
  background: radial-gradient(
    circle at 50% 37.5%,
    rgba(0, 0, 0, 0.98) 0%,
    rgba(0, 0, 0, 0.94) 12%,
    rgba(0, 0, 0, 0.78) 28%,
    rgba(0, 0, 0, 0.52) 46%,
    rgba(0, 0, 0, 0.28) 64%,
    rgba(0, 0, 0, 0.1) 78%,
    transparent 92%
  );
  content: "";
  pointer-events: none;
}

.mouse-blur {
  position: fixed;
  z-index: 1;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 1, 2, 0.938) 0%,
    rgba(120, 134, 255, 0) 30%,
    transparent 72%
  );
  filter: blur(28px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
}

.mouse-blur.is-visible {
  opacity: 1;
}

.site-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100vh;
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.logo-area,
.footer-area {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
}

.logo-area {
  grid-row: 2;
}

.logo-area > object {
  position: relative;
  z-index: 2;
}

.footer-area {
  grid-row: 4;
  align-content: center;
}

.footer-area p {
  margin: 0;
}

.contact,
.copyright {
  color: #fff;
}

a:link,
a:visited {
  color: #f00;
}

a:hover {
  color: #900;
}

a:active {
  color: #f00;
  font-size: large;
}

