
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #007ced;
    font-family: Arial, sans-serif;
    margin: 0;
}
.container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    flex-direction: column;
}
h1 {
    color: black;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}
input[type="file"] {
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.preview-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
}
.preview-container img {
    width: 64px;
    height: 64px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: none; /* Esconde a imagem até que uma seja carregada */
    margin-right: 20px; /* Espaço entre a imagem e o botão */
}
.download-link {
    display: none; /* Esconde o link até que uma imagem seja carregada */
    margin-top: 20px;
    padding: 10px;
    background-color: #005bb5;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.download-link:hover {
    background-color: #004494;
}
canvas {
    display: none;
}

