/* reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: sans-serif;
}

/* Seções de tela (input e card) */
.screen {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #111;
  color: #fff;
}

/* Somente a tela de input */
.screen-center input {
  padding: 0.5rem;
  font-size: 1.2rem;
  margin: 0.5rem 0;
  width: 70%;
  max-width: 300px;
  border-radius: 4px;
  border: none;
}

.screen-center button {
  padding: 0.7rem 1.5rem;
  font-size: 1.2rem;
  background: #c62828;
  border: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

/* Canvas responsivo e sem borda */
#card-canvas {
  display: block;
  width: 90vw;        /* ocupa até 90% da largura da viewport */
  max-width: 500px;   /* tamanho maximo do cartão */
  height: auto;       /* mantém proporção */
  margin-bottom: 1rem;
}

/* Botão de download */
#download-btn {
  padding: 0.6rem 1.2rem;
  font-size: 1.1rem;
  background: #c62828;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
