/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #9b9b9b;
    display: flex;
    height: 100vh;
    margin: 0;
    flex-direction: column;
    align-items: center;
}

h1 {
    color: #333;
    margin-top: 0;
}

input[type="file"] {
    display: none;
}

.upload-button,
#downloadButton {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
    border: none;
}

.upload-button:hover,
#downloadButton:hover {
    background-color: #0056b3;
}

#downloadButton {
    display: none;
}

#result {
    margin-top: 20px;
}

a {
    text-decoration: none;
    color: #007BFF;
}

.header {
    padding: 60px;
    text-align: center;
    width: 100%;
    height: 300px;
    background-image: url("header-image.jpg");
    font-size: 30px;
    justify-content: normal;
    align-items: normal;
  }