* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F8F8F8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.logo {
    max-width: 400px;
    width: 90%;
    height: auto;
    margin-bottom: 2rem;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333333;
    letter-spacing: 0.02em;
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        max-width: 300px;
    }

    .tagline {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 250px;
    }

    .tagline {
        font-size: 1rem;
    }
}
