* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-family: "poppins";
}
a {
  text-decoration: none;
  color: #37b1f8;
}
body {
  background-color: #640577f6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}

header {
  background-color: #410009;
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

header a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

header a:hover {
  color: #d9abff;
}
.main {
  display: flex;
  flex-direction: column;
  background-color: #410009;
  max-width: 600px;
  margin: auto;
}

.content {
  padding: 20px 10px;
}
.content h2 {
  color: aliceblue;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}
.content h3 {
  color: aliceblue;
  font-size: 21px;
  font-weight: 500;
  text-align: center;
}
.content p {
  color: #ebebeb;
  font-weight: 14px;
  text-align: center;
  margin-top: 10px;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  animation: marquee 15s linear infinite;
}

.marquee-inner img {
  width: 60%; /* adjust the width of each image */
  /* height: 100px; adjust the height of each image */
  /* margin: 0; remove margin between images */
  /* padding: 0; remove padding between images */
}

.contact-support p {
  text-align: center;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.attractive-button {
  background-color: #ffda4b;
  color: #000000;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.attractive-button:hover {
  background-color: #ffcc00;
}

.attractive-button:active {
  background-color: #ffda4b;
}

.attractive-button:focus {
  outline: none;
}

.container {
  text-align: center;
  margin-top: 50px;
}

.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-media a {
  margin: 20px 10px;
  font-size: 30px;
  color: #ffffff;
  transition: color 0.2s ease;
}

.social-media a:hover {
  color: #9f47e7;
}

.fab {
  font-size: 24px;
}

footer {
  background-color: #f2f2f2;
  padding: 10px;
  text-align: center;
  color: #666;
}

footer a {
  color: #410a6e;
  text-decoration: none;
}

.img-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

footer a:hover {
  color: #5c1a8d;
}

@media only screen and (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
  header ul {
    gap: 5px;
  }
  header li {
    font-size: 12px;
  }
  .main {
    width: 100%;
  }

  .content h3 {
    color: aliceblue;
    font-size: 16px;
  }
  .content h2 {
    color: aliceblue;
    font-size: 20px;
  }
  .content p {
    font-size: 12px;
    text-align: justify;
  }
  .contact-support p {
    text-align: center;
  }
}

/* .sliders img {
  width: 60%;
} */
