.discord-banner {
    position: fixed;
    top: 20px; /* Distance from the bottom */
    left: 20px; /* Distance from the right */
    background-color: #7289da; /* Discord color */
    color: white; /* Text color */
    padding: 10px 20px; /* Padding around the text */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Shadow effect */
    z-index: 1000; /* Ensure it appears above other elements */
    font-family: Arial, sans-serif; /* Font style */
    text-decoration: none; /* Remove underline from link */
}

.discord-banner a {
    color: white; /* Link color */
    text-decoration: none; /* Remove underline from link */
}

.discord-banner:hover {
    background-color: #5b6eae; /* Darker shade on hover */
}
