#main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 80%; /* Responsive max width */
    height: 100%;
}
/* Responsive Design */
@media (max-width: 768px) {
    #main-container {
        max-width: 95%; /* Larger width for smaller screens */
    }
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

h1 {
    text-align: center;
}

form {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 10px;
}

input[type="number"] {
    width: 98%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button[type="submit"],
button[type="download"],
button[type="upload"],
button[type="reset"] {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

button[type="submit"]:hover,
button[type="download"]:hover,
button[type="upload"]:hover,
button[type="reset"]:hover {
    background-color: #0056b3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

                /* ****** */
                /* FOOTER */
                /* ****** */

.footer-container {
    display: flex;
    justify-content: space-around; /* This will space out the items evenly */
    align-items: center; /* This will vertically center the items */
    padding: 20px;
    background-color: white; /* Background color for the entire footer */
}

.footer-item {
    margin: 0 10px; /* Adds margin to each item */
    padding: 10px; /* Padding inside each item */
    border-radius: 5px; /* Optional: adds rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow for depth */
    /* Additional styling can be added here */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column; /* Stack items vertically on smaller screens */
    }
    .footer-item {
        margin-bottom: 10px; /* Add space between stacked items */
    }
}

