body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #f9f9f9;
    font-family: Arial, Helvetica, sans-serif;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
  }
  
  li {
    float: left;
  }
  
  li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li a:hover {
    background-color: #111;
  }

  .footer {
    background-color: #333333;
    color: white; /* Text color */
    text-align: center;
    padding: 20px 0; /* Padding for top and bottom */
    width: 100%;
    position: relative;
    bottom: 0;
    margin-top: 40em;
  }
  
  footer p {
    margin: 0; /* Remove default margin */
  }

  body {
    text-align: center;
  }

  .discord {
    text-align: center;
    margin-top: 85px;
  }
  
  .discord-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #7289da; /* Discord purple */
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
  }

  .email-button {
    display: inline-block;
    background-color: #8B0000;
    color: white;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 25px;  /* This makes the rounded corners */
    text-decoration: none;
    font-family: Arial, sans-serif;
    transition: background-color 0.2s;
}

.email-button:hover {
    background-color: #660000;
}