body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    max-height: 70vh;
    image-rendering: pixelated;
}

img {
    max-width: 100%;
    max-height: 70vh;
}

#status {
    font-size: 18px;
    font-weight: bold;
    color: #DC143C;
}

input[type="file"]::-webkit-file-upload-button {
    height: 30px;
    border: 1px solid gray;
    border-radius: 12px;
    cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button:active {
    opacity: 0.4;
}