.about-us {
    color: #696969;
    font-family: 'Fira Code', monospace !important;
    margin-top: 20px; /* Adds space above the contact info */
    animation: blink 1s steps(1) infinite;
    clear: both; /* Ensures no floating or inline issues */
    display: block; /* Forces the text to be a block element */
    text-align: center; /* Centers the contact info text */
    font-size: 12px;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

