body {
    font-family: 'Lexend Deca', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #282c34;
    color: #ffffff;
    overflow: hidden;
    user-select: none;
}

.container {
    text-align: center;
    animation: fadeIn 2s ease-in-out;
    z-index: 1;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #282c34;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 0;
}

h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

p {
    font-size: 1.5rem;
    color: #adb5bd;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
