* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0;
	flex-direction: column; 
    min-height: 100vh; 
}

.main-content {
    flex: 1; 
}

footer {
    position: absolute;
    bottom: 0px;
    text-align: center;
    width: 100%;
    padding: 10px 0;
    background-color: #2b3e50;
    color: white;
    font-size: 1rem;
	z-index: 2;
	margin: 0px;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2b3e50;
    z-index: -1; 
}

.wiki-container {
    text-align: center;
    color: white;
    z-index: 1; 
    padding: 30px;
	width: 80%;
	height: 100%
}

.wiki-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.wiki-container p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.button-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; 
}

.button {
    display: inline-block;
	margin: 10px;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-align: center;
    text-decoration: none;
    border-radius: 25px; 
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s; 
	background-color: #007bff;
    color: white;
}

.button:hover {
    transform: scale(1.05); 
	background-color: #0056b3;
}

.ccrates-button {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: white;
    background-color: #24292f; 
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

.ccrates-button:hover {
    background-color: #0366d6; 
}

.ccrates-menu-button {
    position: absolute;
    top: 80px;
    left: 20px;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: white;
    background-color: #24292f; 
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

.ccrates-menu-button:hover {
    background-color: #0366d6; 
}

.command-table table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: white; 
    border-radius: 10px; 
    overflow: hidden; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.command-table th, .command-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
    color: black; 
}

.command-table th {
    background-color: #00796b;
    color: white;
}