*{
    margin: 0;
    padding: 0;
}

body{
    background-color: rgb(29, 28, 28);
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content .box
{
    background-color: #FFF;
    padding: 20px;
    width: 80%;
    border-radius: 5px;
}


.content .box canvas {
    border-radius: 5px;
}

.content .box h1 {
    font-size: 20pt;
}

.content .box form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
}

.content .box form label {
    background-color: rgb(21, 160, 224);
    padding: 20px;
    border-radius: 5px;
    color: #FFF;
    cursor: pointer;
}

.content .box form label:hover{
    background-color: rgb(22, 127, 175);
}

#input-file{
    display: none;
}

.content .box .box-content-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content .box .box-content-footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.content .box .box-content-footer .result{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.content .box .box-content-footer .result h1{
    text-align: center;
}




.content .box .box-content-footer .result .result-humans
{
    margin-top: 20px;
}

.content .box .box-content-footer .result .result-humans .canvas
{
    border-radius: 5px;
}

.result{
    margin-top: 30px;
}