@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap");

.dark-web-text {
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-radius: 15px;
    margin: 20px 0;
    overflow: hidden;
    border: 1px solid #333;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 5px 20px rgba(0, 0, 0, 0.8);
}

.dark-web-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.1), transparent);
    animation: scan 4s infinite;
}

@keyframes scan {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

 
 

 
.typewriter {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    font-weight: 600;
    color: #0087ff;
    letter-spacing: 2px;
}


 
 
 