body {
    margin: 0;
    overflow: hidden; /* Hide scrollbars if particles overflow */
    font-family: sans-serif;
    color: white;
    text-align: center;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #3498db; /* Example background color */
    background-image: url(''); /* Optional: Add a background image */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: -1; /* Place behind other content */
}

.content {
    position: relative;
    z-index: 1; /* Place above the animated background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    font-size: 3em;
    margin-bottom: 15px;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
}