* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #003e53;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.gif-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.gif-container img {
  max-width: min(400px, 80vw);
  height: auto;
}
footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #005d7d;
}
footer a {
  color: #39b398;
  text-decoration: none;
}
footer a:hover {
  color: #4edfbf;
}
#login-button {
  display: none !important;
}
