/* GENERAL */
body {
    background: #f6f1f8;
    font-family: "Verdana", sans-serif;
    margin: 0;
}

/* CONTAINER */
#container {
    width: 900px;
    margin: auto;
    background: #ffffff;
    border: 5px dashed hotpink;
}

/* HEADER */
#header {
    height: 200px;
    background-image: url("https://i.ibb.co/nxHtD5P/IMG-8109.gif");
    background-size: cover;
    background-position: center;
    border-bottom: 5px dashed hotpink;
}

/* MAIN BOX */
#main {
    padding: 20px;
}

/* ART BOX */
.box {
    background: #faf5ff;
    border: 2px solid #d6c4e6;
    padding: 15px;
    margin-top: 20px;
}

/* GALLERY GRID */
.art-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.art-gallery img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 2px solid hotpink;
    border-radius: 5px;
    transition: transform 0.2s;
}

.art-gallery img:hover {
    transform: scale(1.05) rotate(-2deg);
}

/* FOOTER */
#footer {
    text-align: center;
    padding: 10px;
    background: #e6d8f3;
    border-top: 2px solid #d6c4e6;
}

/* MARQUEE */
marquee {
    font-weight: bold;
    color: hotpink;
}