@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
  --subblack: #181818;
  --cultured: #f0f0f0;
  --jasmine: #FFE37C;
  --lavenderFlorar: #B27CFF;
  --lightCoral: #FF7C7C;
}
*{
  user-select: none;
}
html,body{
  margin: 0;
}
body{
  padding: 24px;
  background-color: var(--subblack);
  font-family: 'Saira', sans-serif;
}
h1,h2,h3,h4,h5,h6{
  margin: 0;
  padding: 0;
}
p{
  margin: 0;
  padding: 0;
}
.flexColumn{
  display: flex;
  flex-direction: column;
}
.flexRow{
  display: flex;
  flex-direction: row;
}
.aiStart{
  align-items: flex-start;
}
.aiCenter{
  justify-content: center;
  align-items: center;
}
.aiSEnd{
  align-items: flex-end;
}
.spaceBetween{
  justify-content: space-between;
}
.spaceEvenly{
  justify-content: space-evenly;
}
.gap24{
  gap: 12px;
}
.gap12{
  gap: 12px;
}
.gap8{
  gap: 8px;
}
.gap6{
  gap: 6px;
}
.gap4{
  gap: 4px;
}
.gap2{
  gap: 2px;
}
.gap0{
  gap: 0;
}
.order0{
  order: 0;
}
.order1{
  order: 1;
}
.order2{
  order: 2;
}

.nMenu{
  position: fixed;
  bottom: 1vh;
  left: 1vw;

  width: auto;
  height: auto;
  padding: 0px 20px 32px 20px;
  background-color: var(--cultured);
  border-radius: 24px;

  transition: all .3s ease-in-out;
}

.dropMenu{
  width: 100%;
  height: 1px;
  padding: 8px 4px;
  overflow-y: auto;
  transition: all .3s ease-in-out;
}
.dropMenu::-webkit-scrollbar {
  display: none;
}
.wExpand{
  width: 95%;
}
.hExpand{
  height: 95%;
}
.cta{
  padding: 4px 12px;
  border: 1px solid var(--cultured);
  border-radius: 24px;
}
.cta:hover{
  padding: 4px 8px;
  border: 1px solid var(--subblack);
}

.loopG{
  position: fixed;
  left: calc(100vw - (50vw + 128px));
  top: 48px;
}

.loopG img{
  width: 256px;
  height: 256px;
}