body {
  font-family: "Press Start 2P", cursive;
  background-color: #000000;
  margin: 0;
  padding: 0;
  color: white;
  line-height: 2;
  font-size: 0.85em;
}

header {
  background-color: #000000;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

header .container {
  max-width: 800px;
  margin: 0 auto;
}

header .bot-logo {
  width: 150px;
  height: 150px;
  /* border-radius: 20%; */
  margin-bottom: 20px;
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); Add box shadow for depth */
}

header h1 {
  font-size: 2.5em;
  margin: 0;
}

header p {
  margin: 10px 0;
}

main {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto; /* Center the main box */
  background-color: #000000; /* Add background color with transparency */
  border-radius: 10px; /* Add border radius for rounded corners */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* Add box shadow for depth */
}

h1,
h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

section {
  margin-bottom: 30px;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ul li {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.join-button {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  background-color: #49eacb;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.join-button:hover {
  background-color: #38b39b;
}

footer {
  text-align: center;
  padding: 10px;
  background-color: #000000;
  margin-top: 100px;
  position: relative;
}

.social-icons {
  margin-top: 10px;
}

.social-icon {
  width: 30px;
  height: 30px;
  margin: 0 10px;
}

@media (max-width: 768px) {
  header .bot-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }

  header h1 {
    font-size: 2em;
  }

  main {
    width: 80%;
  }
}
