/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #faffff;  /* Cor do fundo */
  color: #ff0000;             /* Cor do texto */
  font-family: Helvetica;     /* Fonte */
  text-align: center;         /* Alinhamento */
}

.container {
    width: 100%;                /* Largura do container */
    max-width: 300px;         /* Largura máxima */
    margin: 0 auto;            /* Centraliza na tela */
    background-color: #f0ffff; /* Cor de fundo */
    padding: 5px;             /* Espaçamento interno */
    border: 2px dashed #ff0000;    /* Borda opcional */
  }