@keyframes rainbow {
    0% { color: red; }
    14.28% { color: orange; }
    28.56% { color: yellow; }
    42.84% { color: green; }
    57.12% { color: blue; }
    71.4% { color: indigo; }
    85.68% { color: violet; }
    100% { color: red; }
}
body.light {
    background-image: url('../assets/images/backgrounds/light/home.jpg');
}
body.dark {
    background-image: url('../assets/images/backgrounds/dark/home.jpg');
}
#title {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 50px;
    width: 100vw;
    height: 100px;
    z-index: 10;
    justify-content: center;
    align-items: center;
}
#titleImage {
    max-width: 100%;
    max-height: 100%;
}
#text {
    position: absolute;
    animation: rainbow 5s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    text-align: center;
    color: #fff;
}

/* Links Section */
#see {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 600px;
    width: 90%;
    text-align: left;
}

#see ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#see li {
    margin: 1rem 0;
}

#see a {
    color: #0cc0df;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

#see a:hover {
    color: white;
    background-color: rgba(12, 192, 223, 0.3);
    text-decoration: underline;
}

/* Changelog Section */
/* Responsive Adjustments */
@media (max-width: 768px) {
    #text {
        font-size: 1.5rem;
    }
    
    #titleImage {
        max-height: 120px;
    }
    
    #see a {
        font-size: 1rem;
    }
}
