/* VEGA Base CSS */

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    background-color: #000;
    color: #0F0;
}

.container {
    text-align: center;
    padding: 20px;
}

.logo img {
    max-width: 350px;
    margin: 0 auto;
}

.services .service {
    margin: 80px 0;
}

.service h2, .service p {
    color: #0F0;
}

.service h2, .service p, a {
    color: #0F0; /* Sets the default text color, including links */
    text-decoration: none; /* Removes underline from links */
}

a:hover {
    color: #FFD700; /* Gold color for hover state to stand out */
    text-decoration: none; /* Ensures underline is not added on hover */
}

a:active {
    color: #FF4500; /* Orange-Red color for clicked (active) state */
    text-decoration: none; /* Ensures underline is not added when clicked */
}

footer {
    margin-top: 80px;
}
footer p {
    margin-top: 20px 0;
}

@media (max-width: 768px) {
    .service img {
        max-width: 100%;
    }
}
.back-to-top {
    position: fixed;
    bottom: 18px;
    right: 18px;
    background-color: #000; /* Background color */
    color: #0F0; /* Text color */
    padding: 6px 6px 0 6px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 25px;
    text-align: center;
	font-weight:600;
    border: none;
    cursor: pointer;
    border-radius: 15px;
    display: none; /* Hidden by default */
}

/* Show the button when you scroll 20px from the top of the document */
.show {
    display: block;
}

/* Ensure your base CSS remains intact, including the body, html, .container, and other base styles you've provided. */

/* Desktop Adjustments */
@media (min-width: 1024px) { /* Targets screens wider than 1024px */
    .services .service {
        display: flex; /* Enables Flexbox */
        align-items: center; /* Centers items vertically */
        justify-content: center; /* Centers content horizontally */
        text-align: left; /* Ensures text alignment is consistent */
        gap: 20px; /* Adds space between the image and text */
    }

    .services .service img {
        order: 1; /* Always places the image on the left */
    }

    .services .service h2,
    .services .service p {
        order: 2; /* Ensures text follows the image */
    }

    .service img {
        width: 250px; /* Adjusts image width to ensure consistency */
        height: auto; /* Maintains aspect ratio */
    }
}
#terminal-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#terminal {
    word-wrap: break-word; /* Break the word to prevent overflow */
    max-width: 100%; /* Max width to maintain padding on small screens */
}

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

#blipping {
    animation: blink 1s linear infinite;
}

@media (max-width: 600px) {
    #terminal {
        font-size: 12px; /* Smaller font for small screens */
    }
}
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

.retro-button {
    font-family: 'Press Start 2P', monospace;
    font-size: 14px;
    padding: 16px 32px;
    background-color: #000;
    color: #00ffea;
    border: 3px solid #00ffea;
    text-decoration: none;
    display: inline-block;
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 8px #00ffea, inset 0 0 6px #00ffea;
    transition: all 0.2s ease;
}

.retro-button:hover {
    background-color: #111;
    color: #ff00c8;
    border-color: #ff00c8;
    box-shadow: 0 0 12px #ff00c8, inset 0 0 8px #ff00c8;
}

.retro-button::before,
.retro-button::after {
    content: '';
    position:

