/* General body styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark background color */
    color: #e0e0e0; /* Light text color for contrast */
    line-height: 1.6;
}

/* Header styles */
header {
    background-color: #1e1e1e; /* Slightly lighter dark background for the header */
    padding: 20px;
    text-align: center;
}

header h1 {
    color: #ffffff; /* White text for main heading */
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #1e90ff; /* Blue color for links */
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Container styling */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1e1e1e; /* Dark background for content area */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Main content styles */
main {
    padding: 20px;
}

/* Sections within main content */
.section {
    margin-bottom: 20px;
}

/* General styles for the button container */
.invite-button-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    margin-top: 20px; /* Adjust as needed */
}

/* Invite button styles */
.invite-button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #1e90ff; /* Blue background color */
    color: #ffffff; /* White text color */
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.invite-button:hover {
    background-color: #1c86ee; /* Darker blue on hover */
}

/* General styles for the button container */
.donate-button-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    margin-top: 20px; /* Adjust as needed */
}

/* Invite button styles */
.donate-button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #1e90ff; /* Blue background color */
    color: #ffffff; /* White text color */
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.donate-button:hover {
    background-color: #1c86ee; /* Darker blue on hover */
}


/* Logo styling */
.logo {
    display: block;
    margin: 0 auto;
    width: 100px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    animation: wave 2s infinite; /* Apply wave animation */
    border-radius: 50%;
}

.privacy-logo {
    width: 100px; /* Smaller size for privacy policy logo */
}

/* Copyright text */
.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #888888; /* Light gray text for copyright */
}