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

body {
  font-family: Arial, sans-serif;
  background-color: #003366; /* Background is now blue */
  color: #fff;
}

header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #212121;
}

nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.discord-btn {
  background-color: #828fe3;
  padding: 10px 20px;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

ul.nav-links {
  list-style-type: none;
  display: flex;
  justify-content: flex-end; /* Makes the links float to the right */
  margin-right: 0;
}

ul.nav-links li {
  margin-left: 20px;
}

ul.nav-links li a {
  color: #ccc;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 15px;
}

ul.nav-links li a.active, ul.nav-links li a:hover {
  background-color: #2ac29f;
  border-radius: 10px;
  color: #000;
}

.hero {
  text-align: center;
  margin-top: 50px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #b3b3b3;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 15px 40px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 30px;
  text-align: center;
  transition: background-color 0.3s;
}

.btn.bot {
  background-color: #f63d3d; /* Red button for Install */
  color: #fff;
}

.btn.bot:hover {
  background-color: #ff5a5a;
}

.btn.dsc {
  background-color: #f63d3d; /* Red button for Get IPA */
  color: #fff;
}

.btn.dsc:hover {
  background-color: #ff5a5a;
}
