@font-face {
    font-family: 'coolvetica';
    src: url('assets/fonts/coolvetica rg.otf') format('otf');
    font-weight: normal;
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000000;
    font-family: 'coolvetica', sans-serif;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.center-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #6f62c5;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(111, 98, 197, 0.7);
    text-align: center;
    width: 60%;
    max-width: 600px;
}

.logo {
    max-width: 200px;
    margin-bottom: 30px;
}

h1 {
    margin: 20px 0;
    font-size: 2em;
    color: #000000;
}

h2 {
    color: #000000;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    display: inline-block;
    padding: 15px 30px;
    background: #000000;
    color: #6f62c5;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.social-link:hover {
    background: #1a153f;
}

.particle {
    position: absolute;
    background: rgba(76, 60, 178, 3);
    border-radius: 50%;
    opacity: 0;
    animation: float 15s linear infinite;
}

@keyframes float {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20vw, -20vh) scale(0.8);
    }
    50% {
        transform: translate(-20vw, 20vh) scale(1.2);
    }
    75% {
        transform: translate(20vw, 20vh) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-20vw, -20vh) scale(1);
    }
}
