* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}
body{
  background: 
  radial-gradient(ellipse at 20% 10%, rgba(180, 130, 0, 0.15) 0%, transparent 40%),
  radial-gradient(ellipse at 80% 15%, rgba(150, 20, 20, 0.4) 0%, transparent 35%),
  radial-gradient(ellipse at 30% 0%, rgba(30, 100, 40, 0.8) 0%, transparent 50%),
  linear-gradient(170deg, #1a4d22 0%, #0d1a0f 35%, #080808 55%, #1c0808 80%, #0a0a0a 100%);
}
.coming_soon {
  background-color: #000;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 100vw; /* originally: 85vm */
  max-height: 100vh; /* originally: 85vm */
  width: auto;
  height: auto;
  object-fit: contain;
}