#content{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
}

#container_images-container_progress_bar {
    width: 100%;
    background-color: #ddd;
    margin: 0em 0em 1em 0em;

}

#container_images-container_progress_bar_progress {
    width: 1%;
    height: 0.5em;
    background-color: #4CAF50;
    text-align: center;
    line-height: 32px;
    color: black;
}

#form_submit_img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5em 1em 1em 1em;
}

#form_submit_img input::file-selector-button,
#form_submit_img input[type="submit"] {
    background-color: #4CAF50;
    background-position-x: 0%;
    background-size: 200%;
    border: 0;
    border-radius: 8px;
    color: #fff;
    padding: 0.5rem 0.8rem;
    transition: all 0.25s;
}

#form_submit_img input::file-selector-button:hover,
#form_submit_img input[type="submit"]:hover {
    cursor: pointer;
}

#container_images {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* Lo que haya adentro lo centra */
    justify-content: center;
    background-color: rgb(228, 227, 227);
    border-radius: 30px;
    padding: 3em;
    margin-bottom: 3em;
}

#container_images img {
    padding: 0.5em;
    width: 20em;
    height: 20em;
    object-fit: cover;
}

body {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media (min-width: 700px) {
    #main-content {
        padding: 0em 2em 0em 2em;
        margin: 0;
    }
}

#loader {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border-top: 2px solid #8b90ff;
    border-right: 2px solid transparent;
    animation: loader-rotate 1s linear infinite;
    margin: 0.5em auto;
}

@keyframes loader-rotate {
    to {
        transform: rotate(360deg);
    }
}
.navbar {
    background-color: #202227;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0.5em 1em;
    justify-content: space-between;

}

.navbar a {
    color: #fff;
    text-decoration: none;
}


#powered_img {
    display: flex;
    align-items: center;
    justify-content: center;
}

#powered_img span {
    padding-right: 1em;
}

#powered_img img {
    height: 2.5em;
}

@media (min-width: 700px) {
    .navbar {
        padding: 0.7em 3em;
    }
}
footer {
    background-color: #202227;
    color: #fff;
    padding: 1em 0em;
    margin-top: auto;
    /* Establece la altura del footer */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-container span {
    white-space: nowrap;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 2.5em;
    margin-right: 0.5em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: row;
}

.footer-links li:not(:last-child) {
    margin-right: 1em;
}

.footer-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.footer-links a span {
    padding-left: 1em;
}

.footer-links a img {
    height: 2.5em;
}

#footer-container_img-mail-logo {
    height: 1.9em;
    padding: 0.3em;
    /* this img was a pain*/
}
