* {
    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;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin: 0;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2b3e50;
    z-index: -1;  
}

.home-container {
    text-align: center;
    color: white;
    z-index: 1; 
}

.home-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.home-container p {
    font-size: 1.5rem;
}

footer {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.github-button {
    background-color: #24292f;
    color: white;
}

.github-button:hover {
    background-color: #0366d6;
}

.wiki-button {
    background-color: #007bff;
    color: white;
}

.wiki-button:hover {
    background-color: #0056b3;
}