/* --- Global reset / sanity --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Page base --- */
body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: system-ui, sans-serif;
}

/* --- Top navigation bar --- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 24px;
  background-color: #1e1e1e;
  border-bottom: 1px solid #2a2a2a;
}

/* --- Logo --- */
.logo img {
  height:64px;      /* adjust to taste */
  width: auto;       /* preserves aspect ratio */
  display: block;
}

/* --- Login button --- */
.login-button {
  background: none;
  border: 1px solid #444;
  color: #e0e0e0;
  font-size: 1.2rem;
  padding: 6px 10px;
  cursor: pointer;
}

.login-button:hover {
  background-color: #2a2a2a;
}

/* --- Main content --- */
.content {
  max-width: 300px;
  margin: 40px auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}
/* Gato */
.gato img {
  max-width: 600px;
  height: auto;
  display: block;
  margin: auto;
}

/* Gato Text */
.gatotext {
  display: flex;
  justify-content: center;
}
