body {
    background: #ffe6ff url('images/bg-pattern.gif') repeat;
    font-family: 'Comic Sans MS', sans-serif;
    color: #660066;
    text-align: center;
    margin: 0;
    padding: 0;
}

header, footer {
    background: #ffccff;
    padding: 20px;
    border-bottom: 3px dashed #ff66ff;
}

nav a {
    color: #ff00ff;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background: #fff0ff;
    border: 3px dotted #ff66ff;
    border-radius: 15px;
}

img {
    max-width: 90%;
    height: auto;
    border: 2px dashed #ff66ff;
    margin: 10px 0;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery img {
    width: 150px;
    height: 150px;
    margin: 5px;
    border-radius: 10px;
}

/* Blinking text for extra retro vibe */
.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%,50%,100% {opacity:1;}
    25%,75% {opacity:0;}
}

