body {
    background-color: black;
    font-family: 'Roboto Mono', monospace;
    color: white;
    margin: 0;
    padding: 0;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 15px;
}

.container img {
    display: block;
    margin: 40px auto 20px;
    max-width: 100%;
    height: auto;
    transform: translateX(-15px);
}

.navbar ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}

.navbar a:hover {
    text-decoration: underline;
}

.faq-container {
    text-align: center;
    margin-bottom: 50px;
}

.faq-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-item {
    margin-bottom: 30px;
    text-align: left;
    background-color: rgba(17, 17, 17, 0.7);
    padding: 20px;
    border-radius: 5px;
    border-left: 3px solid #444;
}

.faq-item h3 {
    margin-top: 0;
    color: #ccc;
    font-size: 18px;
}

.faq-item p {

    line-height: 1.6;

}