@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap'); /* Importing the retro font */

body {
    background-color: #f2f2f2;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px;
    width: 50%;
    margin: 20px auto;
    line-height: 1.5;
    font-size: 18px;
    border: 2px solid #333;
    box-shadow: 3px 3px 0px #000;
}

h1 {
    font-size: 1.5em;
    font-family: 'Press Start 2P', cursive;  /* Using the retro font */
    border-bottom: 2px solid #333; /* Dark grey underline */
    padding-bottom: 0.5em;
    margin-top: 20px;
}

a {
    text-decoration: none;
    color: #333;
    background-color: #e0e0e0; /* Light grey background for links */
    padding: 5px 10px;
    border: 2px solid #333; /* Solid border for the links */
    transition: background-color 0.3s;
}

a:hover {
    background-color: #ccc; /* Slightly darker grey on hover */
    color: #000;
}
