body {
  font-family: monospace;
  margin: 0;
  line-height: 1.5;
  height: 100vh;
  background-color: #070707;
  color: #d3b3bf;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.moving-container {
  width: 100%;
  overflow: hidden;
  background-color: #111;
  padding: 0;
  box-sizing: border-box;
  flex-shrink: 0;
}

.moving-text {
  display: flex;
  width: max-content;
  white-space: nowrap;
  color: white;
  animation: scroll-left 15s linear infinite;
  font-size: clamp(1rem, 2vh, 1.5rem);
}

.moving-text span {
  padding-right: 1ch;
}

.site {
  box-sizing: border-box;
  /* min-height: 100vh; */
  /* padding: clamp(1.25rem, 3vw, 2.5rem); */
  flex: 1;
  padding: 2vh 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4vh;
  text-align: center;
  position: relative;
  overflow: hidden;
}

a {
  color: #9d868e;
  text-decoration: none;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);

}

.links a span {
  text-align: center;
  font-size: 1.8vh;
}

a:hover {
  text-decoration: underline #9d868e;
}

.hero {
  font-size: clamp(3rem, 12vh, 7rem);
  margin: 0;
}

.logo {
  /* width: 16rem; */
  /* height: 16rem; */
  /* margin-top: 0.5rem; */
  width: clamp(8rem, 28vh, 16rem);
  height: clamp(8rem, 28vh, 16rem);
  margin-top: 0;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  animation: rotate 100s linear infinite;
}

.logo:hover {
  transform: scale(1.02);
}

.at {
  max-width: 100%;
  height: auto;
  display: block;
  opacity: 0.4;
  filter: blur(0.2rem) grayscale(100%) contrast(1.1) brightness(0.9);
}

.content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10vw;
  margin-top: 0;
  width: 100%;
  /* max-width: 800px; */
}

.links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3vh;
  align-items: flex-end;
  text-align: right;
}



.pix {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  padding-bottom: 4vh;
}

.pix img {
  max-width: clamp(150px, 30vh, 300px);
  /* width: 100%; */
  max-height: 35vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 1px;
  border: 1px solid rgba(198, 167, 157, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5)
}

.bottom-bar {
  width: 100%;
  overflow: hidden;
  background-color: #111;
  padding: 4px 0;
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.scrolling-gifs {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: scroll-right 40s linear infinite;
}

.scrolling-gifs img {
  height: 31px;
  width: 88px;
  display: block;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
    gap: 4vh;
  }

  .site {
    padding: 2vh 5vw 6vh;
    overflow-y: auto;
    justify-content: flex-start;
    gap: 6vh;
    transform: scale(1);
    width: 100%;
    height: 100%;
  }

  .hero,
  .logo,
  .content {
    margin-bottom: 2vh;
  }

  .links {
    align-items: center;
    text-align: center;
  }

  .hero {
    font-size: 8vh;
  }

  .logo {
    width: 25vh;
    height: 25vh;
  }

  .links {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .pix {
    justify-content: center;
    width: 100%;
  }

  .pix img {
    max-width: 80%;
  }


}
