@font-face {
  font-family: "MasqualeroGroove-Regular";
  src: url("../fonts/Masqualero_Groove_Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Masqualero Groove";
  src: url("../fonts/Masqualero_Groove_Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#go-logo-wrap {
  position: relative;
  width: min(92vw, 92vh);
  height: min(92vw, 92vh);
  flex-shrink: 0;
}

#go-main-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.go-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}

.go-zone,
.go-glyph-zone {
  pointer-events: all;
  cursor: pointer;
  fill: transparent;
  stroke: none;
}

#go-label {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  white-space: nowrap;
}

#go-label.on {
  opacity: 1;
}