/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and layout */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header */
header {
    background-color: #111;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    text-align: center;
    font-size: 2.5rem;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Hero Section */
#hero {
    background-color: #333;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.hero-image {
    display: block;
    max-width: 250px; /* Adjust size as needed */
    margin: 20px auto 0; /* Centers the image */
}

#hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

#hero .container, #contact .container {
    text-align: center;
}

.cta-button {
    padding: 15px 30px;
    background-color: #ff5722;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background-color: #ff3d00;
}

/* Sections */
.section {
    padding: 40px 0;
    background-color: #fff;
}

h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding-left: 0;
    text-align: center;
}

ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: center;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ddd;
}

table th {
    background-color: #f4f4f4;
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}
#contact a {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    background-color: #5865F2; /* Discord's color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.ender-image {
    display: block;
    max-width: 250px; /* Adjust size as needed */
    margin: 20px auto 0; /* Centers the image */
}