html{
    box-sizing: border-box;
  }
  *, *:before, *:after{
    box-sizing: inherit;
  }

  html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
html,
body {
  margin: 0;
  padding: 0; /* optional, but keeps resets consistent */
}
body{
    height:100vh;
    width: 100vw;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    background: rgb(0,38,203);
    background: radial-gradient(circle, rgba(0,38,203,1) 0%, rgba(0,18,96,1) 72%);
    background-repeat: no-repeat;
    overflow: hidden;
}
.main_center_hm_logo{
    position: absolute;
    width:20rem;
    height:20rem;
    top: 30%;
    left: 50%;
    transform: translate(-55%, -50%);
    background: url("../imgaes/assets/logos/ui/hummingbird_logo.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -10;
}
.three_js_container{
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -9;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  body {
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .main_center_hm_logo {
    width: 60vw;
    height: 60vw;
    max-width: 260px;
    max-height: 260px;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
    background-size: contain;
    z-index: -5;
  }

  .wrapper {
    margin: 16px auto 8px;
    padding-top: 8px;
  }
}
