body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
    color: #00ff00;
    overflow: hidden;
    margin: 0;
    position: relative;
    font-family: 'Courier New', Courier, monospace; /* Hacker uslubidagi shrift */
}

#animation {
    position: absolute;
    z-index: 2; /* Animatsiyani yuqoriga qo'yish */
}

.animated-text {
    font-size: 48px;
    font-weight: bold;
    animation: fadeInOut 4s forwards;
    color: #00ff00;
    text-align: center;
    font-family: 'Courier New', Courier, monospace; /* Hacker uslubidagi shrift */
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

#welcome-message {
    display: none;
    position: absolute;
    z-index: 2; /* Xush kelibsiz xabarini yuqoriga qo'yish */
}

#welcome-message h1 {
    font-size: 36px;
    color: #00ff00;
    text-align: center;
    font-family: 'Courier New', Courier, monospace; /* Hacker uslubidagi shrift */
}

@keyframes rain {
    from {
        top: -100px;
    }
    to {
        top: 100vh;
    }
}

.rain {
    position: absolute;
    top: -100px;
    font-size: 16px;
    animation: rain 2s linear infinite;
    color: rgba(0, 255, 0, 0.5);
    z-index: 1; /* Raqamlar yomg'irini pastga qo'yish */
    font-family: 'Courier New', Courier, monospace; /* Hacker uslubidagi shrift */
}

#social-links {
    position: fixed; /* Ekranga nisbatan qat'iy joylashish */
    bottom: 20px; /* Ekranning pastki qismidan masofa */
    left: 50%; /* Ekranning chap tomoni nisbatan joylashish */
    transform: translateX(-50%); /* Markazlash uchun chapga siljitish */
    display: flex; /* Flexbox bilan tartiblash */
    justify-content: center; /* Elementlarni markazlash */
    gap: 20px; /* Ikonkalar orasidagi masofa */
    z-index: 10; /* Yuqoridagi qatlamga chiqish */
}

.social-icon {
    text-decoration: none;
    font-size: 2rem;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-icon i {
    pointer-events: none;
}

