* {
    box-sizing: border-box;
}

html,body {
    height:100%;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    font-family: sans-serif;
    align-items: center;
    text-align: center;
    font-size: 24px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



.ccflex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
    text-align: center;
}

#dropZone {
    border: 2px dashed #ccc;
    padding: 5em 10em;
    cursor: pointer;
    background-color: #f9f9f9;
}

#dropZone:hover {
    background-color: #e9e9e9;
}

a.download {
    font-size: 1.25em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    gap: 20px;
}


img {
    max-width: 100%;
    height: auto;
}

#result img {
    min-width: 200px;
}

progress {
    max-width: 80%;
}

button, .btn {
    font-size: 1.5em;
    padding: 0.5em 1em;
    cursor: pointer;
}

form label {
    display: block;
    margin: 10px auto;
}

