*{
    margin: 0;
    padding: 0;
}

body{
    background-color: rgb(29, 28, 28);
    width: 100%;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content .box
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    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;
}