html,

body {
    background-color: #f2f2f2;
    font-family: Arial, sans-serif;
}
#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: fit-content;
    margin: 0 auto; /* Centrar horizontalmente */
}
#canvas {
      border-radius: 10px;
      padding: 10px;
      box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
      width: fit-content;
}
#title {
    border-radius: 10px;
    padding: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);

    background-color: #b3c6ff;
    color: #fff;
    text-align: center;
    width: 100%;
    margin-top: 20px;
    padding: 10px;
}
#text {
    border-radius: 10px;
    padding: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);

    text-align: justify;
    margin-top: 20px;
    color: #666;
    width: 100%;
    margin-left: -10px;
    margin-right: -10px;
}
