html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .background-image {
    background-image: url('../img/bondagebanner.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
  }
  
  .overlay-content {
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    padding: 20px;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5); /* Soft shadow */
  }

  .join-discord-btn {
    background-color: white;
    color: black;
    font-weight: bold;
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .join-discord-btn:hover {
    background-color: #ccc; /* Light gray on hover */
    color: black;
  }
  