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

body {
  font-family: 'Cairo', sans-serif;
  background-color: #240021;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 14px; /* Adjusted font size */
  animation: fadeIn 1s ease-in-out;
}

header {
  background-color: #140011;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slideInDown 0.5s ease-out;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 40px;
  margin-right: 10px;
  border-radius: 30px;
}

.logo h1 {
  font-size: 1.5rem;
  margin: 0; /* Ensure no extra margin */
  line-height: 40px; /* Aligns the text vertically with the image */
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1s ease-in-out;
}

.intro {
  text-align: center;
}

.intro-content {
  max-width: 600px;
}

.intro-content h2 {
  font-size: 2rem; /* Adjusted font size */
  margin-bottom: 1rem;
  animation: fadeInUp 1.5s ease-in-out;
}

.intro-content p {
  font-size: 1rem; /* Adjusted font size */
  margin-bottom: 2rem;
  animation: fadeInUp 2s ease-in-out;
}

.buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.buttons .add-discord, .buttons .browse-features {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  transition: background-color 0.3s, transform 0.3s;
}

.buttons .add-discord {
  background-color: #3b82f6;
  color: #fff;
}

.buttons .browse-features {
  background-color: #333;
  color: #fff;
}

.buttons .add-discord:hover, .buttons .browse-features:hover {
  transform: scale(1.05);
}

footer {
  background-color: #151515;
  text-align: center;
  padding: 1rem;
}

.features-content {
  max-width: 600px;
  margin: auto;
  padding: 2rem;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.features-content h2 {
  font-size: 2rem; /* Adjusted font size */
  margin-bottom: 1rem;
  animation: fadeInUp 1.5s ease-in-out;
}

.features-content ul {
  text-align: left;
  margin-bottom: 2rem;
}

.features-content ul li {
  margin-bottom: 1rem;
  animation: fadeInUp 2s ease-in-out;
}

.features-content p {
  font-size: 1rem; /* Adjusted font size */
}

/* Keyframes for animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
