    /* Body & Container */
body {
    background-image: url('retro_bg.jpg');
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    margin: 0;
    padding: 0;
    cursor: url('retro.cur'), auto;
}


.container {
    max-width: 800px;
    margin: auto;
    background: #FFFFCC; /* pale yellow background */
    border: 5px dashed #FF00FF;
    padding: 30px;
    box-shadow: 5px 5px 0 #0000FF;
}

/* Headers */
h1, h2, h3 {
    color: #FF0000;
    text-shadow: 2px 2px #FFFF00;
    text-align: center;
}

/* Links */
a {
    color: #0000FF;
    font-weight: bold;
    text-decoration: underline;
}

a:hover {
    color: #FF0000;
    background: #FFFF00;
    cursor: crosshair;
}

/* Project List */
ul {
    list-style-type: square;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Contact Form */
.contact-form {
    background-color: #FFF0F5;
    border: 3px groove #FF69B4;
    padding: 20px;
    margin-top: 30px;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px;
    font-family: 'Courier New', monospace;
    background-color: #E0FFFF;
    border: 2px inset #000080;
}

.contact-form button {
    margin-top: 10px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #FF00FF, #FFFF00);
    border: 2px outset #000080;
    font-size: 16px;
    font-weight: bold;
    color: black;
    font-family: 'Comic Sans MS', cursive;
}

.contact-form button:hover {
    background: linear-gradient(45deg, #FFFF00, #FF00FF);
    border-style: inset;
}

/* Fun Stuff */
hr {
    border: none;
    border-top: 3px double #000;
    margin: 30px 0;
}

/* Add a bouncing email icon */
.contact-form::before {
    content: url('https://web.archive.org/web/20060208220417if_/http://es.geocities.com:80/xgorrea/images/email.gif');
    display: block;
    margin: auto;
    text-align: center;
}

/* Footer banner */
footer{
    color: black; /* White text for contrast */
    stroke: black;
    padding: 20px;
    text-align: center;
}

