body {
    background-color: #000000;
    color: #00FF00; 
    font-family: "Courier New", Courier, monospace;
    background-image: url('background-tile.gif'); 
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}

#container {
    width: 95%; /* Responsive full-screen width */
    max-width: 100vw;
    margin: 2% auto;
    border: 3px dashed #FF00FF; 
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8); /* Darkens the tile background behind text */
    box-sizing: border-box;
}

h1, h2 {
    color: #FF00FF;
    text-transform: uppercase;
    text-shadow: 3px 3px #0000FF;
    text-align: center;
}

#main-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#sidebar {
    flex: 1 1 250px;
    border-right: 2px solid #00FF00;
    padding-right: 15px;
    text-align: center;
}

#sidebar img {
    max-width: 100%;
    border: 2px solid #0000FF;
}

#bio {
    flex: 3 1 400px;
}

#links-section {
    margin-top: 30px;
    border-top: 2px dashed #FF00FF;
    padding-top: 20px;
    text-align: center;
}

#links-section ul {
    list-style-type: none;
    padding: 0;
}

#links-section li {
    margin: 15px 0;
}

#links-section a {
    color: #FFFF00; 
    font-size: 1.2em;
    text-decoration: none;
    background-color: #222222;
    padding: 5px 15px;
    border: 1px solid #00FF00;
    display: inline-block;
}

#links-section a:hover {
    background-color: #FF00FF;
    color: #FFFFFF;
    text-shadow: 1px 1px #000;
}