@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

body {
    font-family: 'VT323', monospace;
    font-size: 24px;
    background-color: #000000;
    color: #33ff33;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

h1 {
    font-family: 'Press Start 2P', cursive;
    margin-bottom: 20px;
}

/* Individual letters inside the header */
.header-letter {
    display: inline-block;
}

/* The Horizontal Taskbar Container */
.taskbar {
    display: flex;
    flex-direction: row; 
    gap: 10px;           
    background-color: #c0c0c0; 
    padding: 10px;
    border: 3px inset #ffffff;
    width: 80%;          
    justify-content: center;
    margin-bottom: 30px; 
}

/* Individual 90s Style Nav Buttons */
.nav-btn {
    font-family: 'VT323', monospace;
    font-size: 20px;
    background-color: #c0c0c0;
    color: #000000;
    border: 3px outset #ffffff;
    padding: 5px 15px;
    cursor: pointer;
}

.nav-btn:active {
    border: 3px inset #ffffff;
}

/* The Content Box below the taskbar */
#content-area {
    width: 80%;
    padding: 20px;
    border: 3px solid #33ff33;
    min-height: 200px;
}
/* Keeps your images looking clean and perfectly fitted */
.img-1 {
    max-height: 500px;
    max-width: 500px;    /* Prevents the image from bursting out of the green box */
    min-height: 400px;
    min-width: 400px;     /* Keeps the original proportions so it doesn't look squished */
    border: 3px solid #ccd5cc; /* Gives it a matching neon green border */
    margin: 5px 0;     /* Adds space above and below the image */
    object-fit: fill;
}
.img-2 {
    max-height: 500px;
    max-width: 600px;    /* Prevents the image from bursting out of the green box */
    min-height: 400px;
    min-width: 300px;     /* Keeps the original proportions so it doesn't look squished */
    border: 3px solid #ccd5cc; /* Gives it a matching neon green border */
    margin: 5px 0;     /* Adds space above and below the image */
    object-fit: fill;
}
.img-3 {
    max-height: 500px;
    max-width: 600px;    /* Prevents the image from bursting out of the green box */
    min-height: 400px;
    min-width: 300px;     /* Keeps the original proportions so it doesn't look squished */
    border: 3px solid #ccd5cc; /* Gives it a matching neon green border */
    margin: 5px 0;     /* Adds space above and below the image */
    object-fit: fill;
}
.img-4 {
    max-height: 500px;
    max-width: 600px;    /* Prevents the image from bursting out of the green box */
    min-height: 400px;
    min-width: 300px;     /* Keeps the original proportions so it doesn't look squished */
    border: 3px solid #ccd5cc; /* Gives it a matching neon green border */
    margin: 5px 0;     /* Adds space above and below the image */
    object-fit: fill;
}
.img-5 {
    max-height: 500px;
    max-width: 600px;    /* Prevents the image from bursting out of the green box */
    min-height: 400px;
    min-width: 300px;     /* Keeps the original proportions so it doesn't look squished */
    border: 3px solid #ccd5cc; /* Gives it a matching neon green border */
    margin: 5px 0;     /* Adds space above and below the image */
    object-fit: fill;
}
/* Container that holds the images in a single row */
/* Container that holds the images in a single row */
/* Container forces them into a row */
.image-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 20px;
    margin-bottom: 20px !important;
}

.push-right {
    margin-left: auto !important;    
}
.change_about_colour, 
.change_about_colour * {
    color: #09fbfb !important;
}

.services_colour {
    color: #ff0000 !important; /* Forces this specific text to be neon green */
}
/* Style your clickable email link */
.email-link {
    color: #6200ff !important;       /* Matches your glowing neon green theme */
    text-decoration: underline;      /* Keeps the underline so users know it's clickable */
    font-weight: bold;
    transition: color 0.2s ease;
}

/* Adds a nice hover effect when a cursor rolls over it */
.email-link:hover {
    color: #ffffff !important;       /* Flashes clean white on hover */
    text-decoration: double;         /* Subtle retro style change */
}