Body {
  background-color: black;
}
h1, h2, h3, h4, h5, h6, p {
  color: white;
  font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif"
}
hr {
  color: white;
}
label {
  color: white;
}
.product-img {
  height: 500px;
  width: auto;
}
.button {
  padding: 50px;
  font-size: 30px;
  border-radius: 10px;
}
.div-description {
  width: 1000px;
  font-size: 24px;
}
.live-count {
  width: 1000px;
  height: 1000px;
}
.socials-youtube {
  color: white;
  font-size: 100px;
}
.socials-x {
  font-size: 100px;
  color: white;
}
.socials-twitch {
  font-size: 100px;
  color: white;
}
.socials-tiktok {
  font-size: 100px;
  color: white;
}
.socials-instagram {
  font-size: 100px;
  color: white;
}
.socials-discord {
  font-size: 100px;
  color: white;
}
.socials-email {
  font-size: 100px;
  color: white;
}
.swipe-animation { 
  animation: my-slide;
  animation-duration: 1s;
  animation-timing-function: ease-out;

}
@keyframes my-slide {
  from {
    margin-left: 100%
  }
  to {
    margin-left: 0%
  }
}

@media (max-width: 767px) {
    .div-description {
      width: 350px;
     font-size: 20px;
    }
}
