html {
    background-image: url(https://cdn.lumivoxinnovations.xyz/background.jpg);
    background-size: cover;
    background-position: center;
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.upload {
    color: black;
    margin-bottom: 10px;
    background-color: azure;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.uploadForm {
    background-color: azure;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

input[type="file"] {
    margin-bottom: 10px;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}

#message {
    margin-top: 10px;
    color: #007BFF;
}

#fileUrl {
    margin-top: 10px;
    color: #007BFF;
    text-decoration: none;
}
