@font-face {
    font-family: "RobotoMono Nerd Font";
    src: url("fonts/RobotoMonoNerdFont.woff2") format("woff2"),
         url("fonts/RobotoMonoNerdFont.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: "Roboto Mono", "RobotoMono Nerd Font", monospace;
  display: flex;
  flex-direction: column; /* empilha conteúdo + footer */
  justify-content: center; /* centraliza verticalmente o conteúdo */
  align-items: center;
  min-height: 100vh; /* garante altura mínima da tela */
  text-align: center;
}

div {
  flex: 1; /* ocupa o espaço disponível, empurrando o footer para baixo */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 3em;
  margin: 0;
}

p {
  font-size: 1.2em;
  color: #aaa;
}

footer {
  width: 100%;
  padding: 10px 0;
  background-color: #161616; /* tom levemente diferente */
  color: #888;
  font-size: 0.9em;
}

.small-link {
  font-size: 0.8em;       /* tamanho menor */
  color: #131313;            /* cor discreta */
  text-decoration: none;  /* opcional: tira o underline */
  display: inline-block;  /* necessário para aplicar margin vertical */
  margin-top: 10px;       /* espaço acima do link */
}

.small-link:hover {
  color: #ff0000;
}
