/* Global styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Background Image Styling */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('monkey-laptop.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.15; /* Light transparency for a sleek effect */
    z-index: 1;
}

/* Centering content */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

/* Futuristic neon text */
.neon-text {
    font-size: 3.5rem;
    color: #ffffff;
    text-shadow: 
        0 0 10px #00ff99,
        0 0 20px #00ff99,
        0 0 30px #00ff99,
        0 0 40px #00ff99,
        0 0 50px #00ff99,
        0 0 60px #00ff99,
        0 0 70px #00ff99;
    animation: flicker 1.5s infinite alternate;
    margin-bottom: 20px;
}

/* Subtext styling */
.subtext {
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 
        0 0 5px #ffffff,
        0 0 10px #00ff99;
    animation: subtle-flicker 2s infinite alternate;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Flicker effect for neon text */
@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
        text-shadow: 
            0 0 10px #00ff99,
            0 0 20px #00ff99,
            0 0 30px #00ff99,
            0 0 40px #00ff99,
            0 0 50px #00ff99,
            0 0 60px #00ff99,
            0 0 70px #00ff99;
    }
    20%, 24%, 55% {
        opacity: 0.7;
        text-shadow: none;
    }
}

/* Subtle flicker effect for subtext */
@keyframes subtle-flicker {
    0% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* Image styling for auto-scaling and center alignment */
.centered-image {
    max-width: 40%;
    max-height: 40%;
    object-fit: contain; /* Ensures the image scales while maintaining aspect ratio */
    margin: auto;
}