* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
    margin: 0;
}

.wiki-container {
	margin-left: 15%;
	align: center;
    text-align: center;
    color: white;
    z-index: 1;
    padding: 0px;
    width: 70%;
}

.wiki-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.wiki-container p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hook-section {
    margin: 30px 0;
}

.hook-box {
    background-color: #e0f7fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.hook-box h2 {
    font-size: 2rem;
    color: #00796b;
}

.hook-box ul {
    font-size: 1.2rem;
    text-align: left;
    margin-top: 10px;
    padding-left: 20px;
}

.hook-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);
}

.hook-table th, .hook-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
    color: black;
}

.hook-table th {
    background-color: #00796b;
    color: white;
}

footer {
    text-align: center;
    width: 100%;
    padding: 10px 0;
    background-color: #2b3e50;
    color: white;
    font-size: 1rem;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 190%;
    background-color: #2b3e50;
    z-index: -1;
}

.hook-section {
    background-color: #e0f7fa; 
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    font-family: 'Arial', sans-serif; 
    text-align: left; 
}

.hook-section h2 {
    color: #00796b; 
    font-size: 1.4rem; 
    margin-bottom: 10px;
}

.hook-section p {
    color: #333; 
    font-size: 1rem; 
    margin-bottom: 15px;
}

.hook-section li {
    color: #333; 
    font-size: 1rem; 
    margin-bottom: 15px;
}

.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; 
}