@import url("./web/css/reset.css");
@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  line-height: 100%;
}
html {
  overflow: hidden;
  font-family: "Chakra Petch", serif;
  font-weight: 400;
  font-style: normal;
  user-select: none;
  height: 100%;
}
body {
  overflow: hidden;
  overscroll-behavior: none;
  background-image: linear-gradient(
    to right top,
    #5ea9c2,
    #4fb6c8,
    #44c2c8,
    #44cdc3,
    #54d8ba,
    #66dfb0,
    #7de6a5,
    #95ec98,
    #acf08d,
    #c5f482,
    #def778,
    #f9f871
  );
  height: 100%;
}
div,
i {
  pointer-events: none;
}
button {
  pointer-events: auto;
}
button:focus,
button:focus-visible {
  outline: none;
}
.ui {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}
.nav-menu {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
}
.nav-left {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.nav-right {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin: 0 3.7rem 0 auto;
  gap: 0rem;
}
.nav-menu-button {
  position: absolute;
  top: 0;
  left: calc(100% - 3.7rem);
  z-index: 3;
  margin: 0;
  padding: 0;
}
.ui-button {
  background: none;
  border: none;
  color: white;
  padding: 0.5rem;
  cursor: pointer;
}
.test-button {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
}

.fadeOutAndHide {
  animation: fadeOutAndHide 0.3s ease-in-out forwards;
}

@keyframes fadeOutAndHide {
  0% {
    opacity: 1;
    left: 0%;
  }
  100% {
    opacity: 0;
    left: 100%;
  }
}

.fadeInAndShow {
  animation: fadeInAndShow 0.3s ease-in-out forwards;
}

@keyframes fadeInAndShow {
  0% {
    opacity: 0;
    left: 100%;
  }
  100% {
    opacity: 1;
    left: 0%;
  }
}
