body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    color: #333;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header .upload-form {
    display: flex;
    align-items: center;
}

header .upload-form input[type="file"] {
    display: none;
}

header .upload-form label {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

header .upload-form button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

main {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gallery {
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 20px;
}

.gallery img {
    width: 100%;
    max-width: 200px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.glowing-textbox {
    border: 2px solid #4CAF50;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 0 10px #4CAF50;
    transition: box-shadow 0.3s ease-in-out;
}

.glowing-textbox:focus,
.glowing-textbox:hover {
    box-shadow: 0 0 20px #4CAF50;
    outline: none;
}