body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f3e8ff; 
    color: white;
}

header {
    text-align: center;
    background-color: #e6ccff; 
    padding: 25px 0;
}

header img {
    width: 420px; 
    max-width: 90%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

header h1 {
    font-size: 2.2em;
    color: #4b0082; 
    margin-top: 15px;
}

header p {
    font-size: 1.2em;
    color: #6a0dad;
    margin-bottom: 20px;
}

nav {
    background-color: #6a0dad;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a.active,
nav ul li a:hover {
    text-decoration: underline;
}

main {
    background-color: #b57edc; 
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
}

h2 {
    text-align: center;
    color: white;
}

form label {
    display: block;
    margin-top: 10px;
}

form input,
form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: none;
}

form input[type="submit"] {
    background-color: #6a0dad;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

form input[type="submit"]:hover {
    background-color: #4b0082;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    border: 4px solid purple;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #6a0dad;
    color: white;
    margin-top: 20px;
    border-top: 3px solid #4b0082;
}