body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.container {
    text-align: center;
    width:800px;
    margin: auto;
}

form {
    margin-bottom: 20px;
}

.images {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

canvas {
    border: 1px solid #000;
    max-width: 200px;
}

@media screen and (max-width: 800px){
 .images{
    flex-direction: column;
    width: 90vw;
    margin: auto;
 }
 .container{
    width: 90vw;
    margin: auto;
}
}
