body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: normal;
	color: #222;
	text-align: center
}

h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
	font-weight: normal;
	color: #333;
	text-align: center
}
h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 26px;
	font-weight: bold;
	color: #222;
	text-align: center
}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	color: #222;
}

h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: normal;
	text-align: center;
	color: #222;
}

.small_text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: normal;
	text-align: center;
	color: #444;
}

.gg-container-not-wide {
    max-width: 700px;
}

.gg-container-not-too-wide {
    max-width: 850px;
}

.discord {
    display: inline-flex; /* Flexbox for aligning text and image */
    align-items: center; /* Center content vertically */
    padding: 7px 12px;
    background-color: #5865f2; /* Discord brand color */
    color: #ffffff !important; /* White text */
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
    transition: background-color 0.3s ease;
    line-height: 1;
    gap: 10px; /* Space between text and image */
}

.discord::before {
    content: 'Join our Discord';
}

.discord::after {
    content: '';
    background-image: url('../images_w/misc/discord.png'); /* Discord logo */
    background-size: 22px 18px; /* Resize image */
    background-repeat: no-repeat;
    width: 22px;
    height: 18px;
}

.discord:hover {
    background-color: #4752c4; /* Slightly darker on hover */
}

.discord:active {
    background-color: #3c45a0; /* Even darker when clicked */
}
