* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #bee5f0;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #4902fd, #00f2fe);
    padding: 30px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

nav {
    margin-top: 15px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Form Styling */
form {
    background: #f4f7f6;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

input[type="text"], input[type="file"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #4facfe;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #00c6ff;
}

/* Gallery Styling */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* List Styling */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: #f1f3f6;
    margin-bottom: 10px;
    padding: 15px;
    border-left: 5px solid #4facfe;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
    margin-top: 50px;
}