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

body {
  margin: 0;
  background: linear-gradient(160deg, #1e1e1e 0%, #2a2a2a 50%, #1e1e1e 100%);
  background-attachment: fixed;
  background-size: cover;
  color: white;
  font-family: 'Rubik', sans-serif;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #1e1e1e, #2c2c2c, #1e1e1e);
  background-size: 400% 400%;
  z-index: -1;
}

.container {
  max-width: none;
  /* override for children like .carousel */
  width: 100%;
  text-align: center;

}

.logo {
  width: 300px;
  margin: 0 auto 1rem;
  display: block;
  border-radius: 22px;
}



#anon-title {
  font-size: 64px;
  padding-bottom: 10px;
  /* text-transform: capitalize; */
  /* margin-bottom: 1.5rem; */
}

#anon-title span {
  opacity: 0;
  display: inline-block;
}

.ca-block {
  background: #2a2a2a;
  padding: 1rem;
  margin: 1rem auto;
  border-radius: 12px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid white;
  width: 800px;
}

#copy-btn {
  padding: 6px 12px;
  background: #white;
  color: rgb(36, 36, 36);
  ;

  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
}

.carousel {
  opacity: 0;
  width: fit-content;
  /* 5 images x 400px */
  max-width: 100%;
  overflow: visible;
  margin: 1rem auto;
}

.carousel-inner {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 30px 0 0 0;
  /* gives space for y: -10 wobble */
  box-sizing: content-box;
}

.carousel-track {
  display: flex;
  gap: 10px;
  transition: transform 0.6s ease-in-out;
  overflow: visible;
}

.carousel-track img {
  width: 300px;
  height: auto;
  border-radius: 20px;
  flex-shrink: 0;
  transform-origin: center;
  z-index: 1;
}


/* .carousel-img {
  width: 100%;
  max-width: 400px;
  display: none;
  margin: 0 auto;
  border-radius: 20px;
} */

/* .carousel-img.active {
  display: block;
} */

.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  /* margin-top: 2rem; */
}

.social-btn {
  text-transform: uppercase;
  width: 200px;
  /* adjust as needed */
  padding: 10px 20px;
  background-color: #333;
  border: none;
  border-radius: 6px;
  background-color: white;
  color: rgb(36, 36, 36);
  font-size: 22px;
  cursor: pointer;
  transform-origin: center;
  text-decoration: none;
  margin-top: 20px;

}

.social-btn:hover {
  background-color: grey;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/anon-background.png');
  background-repeat: repeat;
  background-size: 75px;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}