@font-face {
    font-family: 'VolterGoldfish';
    src: url('fonts/VolterGoldfish-Regular.woff2') format('woff2'),
         url('fonts/VolterGoldfish-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


body {
    margin: 0;
    font-family: 'VolterGoldfish', monospace;
    color: white;                 /* white text on black */
    background-color: black;      /* black background */
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 60%;
    margin-left: 0;
}

.nav-menu {
    width: 40%;
    text-align: right;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: white; /* or your preferred color */
    font-weight: bold;
}

.nav-menu li a.active {
    color: #00ffff;
    border-bottom: 2px solid #00ffff;
}

.hero {
    display: flex;
    width: 100%;
}

.hero-left,
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    width: 60%;
}

.hero-right {
    width: 40%;
}

/* Make images responsive and prevent them from overflowing */
.hero-left img,
.hero-right img {
    max-width: 100%;
    height: auto;
    display: block;
}

.content-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: black;
    color: white;
}

.product-grid {
    display: flex;
    gap: 40px; /* space between the two products */
    margin-top: 40px;
}

.product-item {
    width: 50%;
    text-align: center;
}

.product-item h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white; /* adjust for your theme */
}

.product-item img {
    max-width: 35%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-item a {
    text-decoration: none;
    color: inherit;
}

main a {
    color: #00ffff;
    text-decoration: none;
}

main a:hover {
    text-decoration: underline;
}


.contact-layout {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.contact-left {
	width: 75%;
}

.contact-right {
	width: 25%;
}

.contact-right img {
	width: 80%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.matrix-terminal a {
    text-decoration: none;
    color: #00ff00;
}

.matrix-terminal a:hover {
    text-decoration: underline;
}

.matrix-terminal {
    width: 40%;          /* Make it 40% wide */
    max-width: 600px;    /* Optional max width to keep it reasonable */
    min-width: 300px;    /* Optional min width for readability */
    margin: 0 auto;      /* Center horizontally if needed */
    
    background-color: #000;
    background-image: url('MonitorBlackScreen4.png');
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;

    color: #00ff00;
	
	padding-left: 10%;
    padding-top: 7%;
    padding-right: 2em;  /* keep some right padding */
    padding-bottom: 2em;
	
    border-radius: 5px;

    font-family: 'VolterGoldfish', monospace;
    font-size: 0.9em;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    position: relative;
    min-height: 300px;
}

.cursor {
    display: inline-block;
    animation: blink 1s infinite;
    color: #00ff00;
}

@keyframes blink {
    0%   { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 1; }
}
.terminal-output {
    margin: 0;
    font-family: 'VolterGoldfish', monospace;
    color: #00ff00;
    font-size: 1em;
    white-space: pre-wrap;
}