<style>
/* Make background a tiled meme image */
body {
    background: url('https://i.imgflip.com/30b1gx.jpg') repeat;
    background-size: 200px 200px;
    font-family: "Comic Sans MS", cursive, sans-serif;
    color: #ff00ff;
}

/* Big rainbow text for headings */
h1, h2, h3 {
    font-size: 2.5em;
    background: linear-gradient(90deg, red, orange, yellow, green, cyan, blue, violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    text-transform: uppercase;
}

/* Add a glowing effect to links */
a {
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #00ffff;
}
a:hover {
    color: #ff0000;
    text-shadow: 0 0 10px #ffff00, 0 0 20px #ff0000;
}

/* Meme-style borders around profile sections */
div, table {
    border: 5px dashed #ff00ff;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
}
</style>
