body::-webkit-scrollbar {
  width: 0;
}

body {
  background-color: black;
  margin: 0 20px;
  scroll-behavior: smooth;
}

.image-header {
  position: fixed;
  top: 0;
  width: 15vw;
}

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

.left {
  left: 0;
}

.right {
  right: 0;
}

.container {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.link {
  position: relative;
  font-size: 8.5vh;
  text-decoration: none;
  color: white;
  margin: 25px 0;
}

.link:hover {
  color: rgb(58, 14, 99);
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  background-color: #000;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
}

.description-footer {
  color: white;
  animation: marquee 10s linear infinite;
  display: inline-block;
  padding-left: 100%;
  will-change: transform;
  font-size: 3vh;
}

@keyframes marquee {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(-100%);
  }
}
