body {
    font-family: 'Comic Sans MS', cursive;
    background-color: #ff00ff;
    color: #00ff00;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

header {
    background-color: #ffff00;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 48px;
    text-shadow: 2px 2px #ff0000;
}

main {
    padding: 20px;
}

#wallpapers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.wallpaper {
    margin: 20px;
    text-align: center;
}

.wallpaper img {
    width: 200px;
    height: 150px;
    border: 5px solid #00ffff;
    box-shadow: 0 0 10px #ff00ff;
}

.wallpaper a {
    display: block;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #ff6600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.wallpaper a:hover {
    background-color: #ff9900;
}

footer {
    background-color: #00ff00;
    color: #ff00ff;
    padding: 10px;
    text-align: center;
}

.footer-content {
    margin-top: 20px;
    font-size: 14px;
}

.project-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.project-list li {
    max-width: 80%;
}

.project-list a {
    color: #0000ff;
    text-decoration: none;
    font-weight: bold;
}

.project-list a:hover {
    text-decoration: underline;
    color: #ff00ff;
}

@keyframes sparkle {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0); opacity: 0; }
}

.sparkle {
    position: fixed;
    width: 5px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle linear infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

// ... existing styles ...