/* css/style.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#tsparticles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    z-index: -1;
}

.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

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

.social-links {
    margin-top: 2em;
}

.social-links i {
    font-size: 1.5em;
    margin: 0 15px;
    cursor: pointer;
    transition: color 0.3s;
}

.social-links i:hover {
    color: #007bff;
}

footer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 0.8rem;
    z-index: 1[1][8];
}

footer a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
}

footer a:hover {
    text-decoration: underline;
    opacity: 1;
}

.preset-button {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    font-size: 1.2em;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.preset-button:hover {
    opacity: 1;
}