body {
    margin: 0;
    background-color: #0a0a0a;
    font-family: Arial, sans-serif;
}

header {
    background-color: #1a1a1a;
    color: white;
    padding: 20px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

h1 {
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    margin: 0;
}

.heading-primary {
    color: #ffffff;
}

.heading-secondary {
    color: #333333;
    display: inline-block;
    border-left: 3px solid #ffffff;
    padding-left: 15px;
}

main {
    display: flex;
    flex-wrap: wrap;
}

section {
    background-color: #1a1a1a;
    padding: 10px;
    border: 1px solid #333333;
    margin: 10px;
    color: #f5f5f5; 
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar nav a {
    color: #888888;
    text-decoration: none;
    font-family: "Courier New", monospace;
}

.topbar nav {
    display: flex;
    gap: 20px
}

.logo {

    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
}

.tagline {
    font-family: "Courier New", monospace;
    color: #888888;
}

.author {
    font-family: "Courier New", monospace;
    color: #888888;
    text-align: right;
}

.bio {
    font-family: "Courier New", monospace;
    color: #888888;
    font-size: 0.9rem;
    max-width: 400px;
    margin-left: auto;
    text-align: right;
    line-height: 1.5;
}

.divider {
    border: none;
    height: 1px;
    background-color: #393939;
}

.explore {
    color: #888888;
    text-decoration: none;
}

.exiled-plugin a {
    color: #2563eb;
    font-weight: 900;
}

footer {
    background-color: #1a1a1a;
    color: white;
    padding: 10px;
    text-align: center;
}

@media (max-width: 600px) {
    main {
        flex-direction: column;
    }

    h1 {
        font-size: 2.5rem;
    }

    .topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar nav {
        flex-wrap: wrap;
    }

    .author,
    .bio {
        text-align: left;
        max-width: 100%;
        margin-left: 0;
    }
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}