* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    background: black;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
    color: #00ffff;
}

.background {
    width: 100%;
    height: 100%;
    background: url('your-retro-background.png') repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.content {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-image {
    position: absolute;
    bottom: 0;
    right: 0;
    max-height: 90%;
    max-width: 90%;
    image-rendering: pixelated;
}

.text {
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-size: 24px;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff, 0 0 15px #00ffff;
}

.wired {
    color: orange;
    text-shadow: 0 0 5px orange, 0 0 10px orange, 0 0 15px orange;
}

/* Typing animation but infinite loop */
.typing {
    display: inline-block;
    border-right: 2px solid #00ffff;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3s steps(22, end) infinite alternate,
               blink 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 260px }
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: #00ffff; }
}

/* Make mobile-friendly */
@media (max-width: 768px) {
    .text {
        font-size: 18px;
        bottom: 30px;
        left: 20px;
    }
    .main-image {
        max-width: 95%;
        max-height: 85%;
    }
}
