<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #09101A;
    color: #fbeee0;
    text-align: center;
    padding-bottom: 2rem;
}

header {
    background-color: #25BF76;
    color: #000;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo span {
    margin-left: 0.5rem;
}

nav a {
    color: #000;
    margin-left: 1rem;
    text-decoration: none;
    font-size: 1rem;
}

h1 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
}

.art-section {
    margin: 1.5rem;
    padding: 1rem;
}

.art-img {
    border: 4px solid #25BF76;
    display: block;
    max-width: 90%;
    margin: 0 auto 1rem auto;
    max-width: 300px;
}

footer {
    margin-top: auto;
    background-color: #09101A;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    background-color: #38a169;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon img {
    width: 30px;
    height: 30px;
    padding: 10px;
}

.social-icon:hover {
    background-color: #25BF76;
    transform: scale(1.1);
}

.art-text {
    max-width: 90%;
    margin: 0 auto 2rem auto;
    font-size: 1rem;
    line-height: 1.6;
}

/* Hamburger menu */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    right: 30px;
    padding-right: 25px;
}

#menu-toggle {
    display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        color: #09101A;
    }

    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 30px;
        background-color: #000;
        width: 200px;
        display: none;
        padding: 20px;
        box-shadow: 0 4px 8px #09101A;
        border-radius: 10px;
    }

    #menu-toggle:checked+.hamburger+nav .nav-links {
        display: flex;
    }

    .form-box {
        padding: 20px 10px;
    }

    footer a:nth-child(2),
    /* Twitter/X */
    footer a:nth-child(4),
    /* YouTube */
    footer a:nth-child(5),
    /* TikTok */
    footer a:nth-child(6)

    /* Pinterest */
        {
        display: none;
    }
}</pre></body></html>