body {
    font-family: 'Times New Roman', cursive, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(unpam.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

header {
    background-color: #236c9c;
    padding: 1em 0;
    text-align: center;
    color: aliceblue;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

section {
    background-color: #cbce36;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 90%;
    width: 400px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

input[type="text"],
textarea {
    padding: 0.5em;
    border-radius: 4px;
    border: 1px solid #ccc;
    width: 100%;
}

input[type="file"] {
    display: none;
}

.file-label {
    display: inline-block;
    padding: 1em;
    background-color: #ffb703;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.file-label:hover {
    background-color: #ffca3a;
}

button {
    background-color: #06d6a0;
    color: white;
    padding: 0.5em 1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0a9b86;
}

#uploadStatus {
    margin-top: 1em;
    font-size: 1em;
    color: #333;
}

footer {
    background-color: #236c9c;
    color: white;
    text-align: center;
    padding: 1em 0;
}
