body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: black;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.upload-container {
    background: rgb(214, 214, 214);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: auto;
}

.file-input {
    display: none; /* Hide the default input */
}

.file-label {
    border: 0;
    padding: 10px 20px;
    background-color: #8f8f8f;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 24px;
    display: block;
}

.file-label:hover, .file-label:active {
    background-color: #0056b3;
}

.invert-btn {
    display: block;
    border: 0;
    padding: 10px 20px;
    background-color: #303030;
    color: white;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 24px;
    width: 100%;
}

.invert-btn:hover, .invert-btn:active {
    background-color: rgb(0, 101, 29);
}


.file-name {
    display: block;
    margin-left: 10px;
    font-style: italic;
    color: #555;
    margin-top: 10px;
    margin-bottom: 10px;
}

h1 {
    font-size: 40px;
}

h2 {
    font-weight: normal;
}

a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    margin-bottom: 80px;
}

footer {
    margin-top: 120px;
    
}

/* Mobile Responsive Styles */
@media screen and (max-width: 600px) {
    body {
        display: block;
        margin-top: 10px;
        padding: 10px;
    }

    .upload-container {
        width: auto; /* Use more of the screen width */
        margin: auto;
    }

    header {
        margin-bottom: 30px;
    }

    footer {
        margin-top: 40px;
    }

    /* You may also add additional styles to improve the layout on mobile */
}

footer p {
    font-size: 20px;
}

p.disclaimer {
    font-size: 12px;
}