* {
  box-sizing: border-box;
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  background: #000;
  font-family: "Nunito", Arial, sans-serif;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  position: fixed !important;
  inset: 0 !important;
}

#world {
  background: radial-gradient(ellipse at center, #0c163f 0%, #000 80%);
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 1 !important;
  opacity: 1 !important;
  overflow: hidden !important;
}

#world canvas,
canvas {
  display: block !important;
  max-width: none !important;
}

.wraplogo {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 2 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;

  opacity: 1 !important;
  pointer-events: none;
}

.logo-link {
  display: block;
  line-height: 0;
  cursor: pointer;
  pointer-events: auto;
}

#mv {
  width: 130px !important;
  max-width: 45vw !important;
  height: auto !important;
  display: block !important;
  opacity: 0;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.mail {
  position: static !important;
  display: block !important;
  margin: 28px 0 0 0 !important;
  padding: 0 !important;

  color: #b5f815 !important;
  font-family: "Nunito", sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;

  opacity: 0;
  pointer-events: auto;
  transition: color 700ms ease, text-shadow 700ms ease;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mail:hover {
  color: #0a58ca !important;
  text-shadow: 0 0 6px rgba(10, 88, 202, 0.55);
}

@media (max-width: 600px) {
  #mv {
    width: 110px !important;
  }

  .mail {
    font-size: 14px !important;
    margin-top: 20px !important;
  }
}