body {
  color: white;
  font-family: Arial, Helvetica, serif;
  margin: 0;
  min-height: 100vh;
  background-color: black;
}

/* Only center content on short pages */
body.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

p {
  line-height: 2;
}

li {
  margin-bottom: 10px; /* Adjust the value as needed */
}

.social-links a {
  color: white; /* This will make the SVG white */
  font-size: 24px;
  text-decoration: none;
}


.main {
  max-width: 800px;       /* or whatever max you prefer */
  width: 100%;            /* full width until it hits max */
  padding: 40px;          /* adds space inside */
  background-color: rgba(0, 0, 0, 0.90);
  border:#04AA6D 2px solid;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* stack items vertically */
  box-sizing: border-box; /* includes padding in size */
  margin: 40px auto;  /* add this */
}

.button {
  background-color: #04AA6D;
  border: #04AA6D 2px solid;
  color: black;
  font-size: medium;
  padding: 14px 16px;
  border-radius: 5px;
  text-align: center;
  transition-duration: 0s;
  cursor: pointer;
}

.button:hover {
   color: white;
   background-color: #000000;
}

.button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap; /* Optional: allows wrapping on small screens */
}


.links {
  color: #04AA6D;
}

.links:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;
  gap: 60px; /* space between icons */
  margin-top: 20px;
}

.social-links a {
  color: white;
  font-size: 24px;
  text-decoration: none;
}

.social-links a:hover {
  color: #04AA6D; /* green on hover */
}

.top-menu {
  width: 100%;
  padding: 20px 0 0 0;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
}

.menu-inner {
  border-bottom: 1px solid #04AA6D;
  margin-left: 40px;
  padding-bottom: 10px;
  display: flex;
  gap: 20px; /* space between links */
  width: fit-content; /* line wraps content */
}

.top-menu a {
  color: #04AA6D;
  text-decoration: none;
  font-size: 18px;
  margin-right: 20px;

}

.top-menu a:hover {
  color: white;
}
