:root { --max-w: 980px; --gap: .3rem; }
html { height: 100%; }
body {
  background: #fff;
  color: #000;
  font-family: Roboto, Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-x: hidden;
}
.top-image {
  display: block;
  margin: 2rem auto;
  max-width: 300px;
  width: 80%;
  height: auto;
  border-radius: 0;
  flex-shrink: 0;
  pointer-events: none; /* Prevents dragging the large image on mobile */
}
.links-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 2rem 0 0 0;
  padding: 0;
  list-style: none;
}
.footer {
  text-align: center;
  padding: 1rem 0;
  font-size: .95rem;
  color: #000;
  margin-top: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background-color: #f4f4f4;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.2s;
  width: 80%;
  max-width: 350px;
}
.btn:hover { background-color: #e0e0e0; }
.btn i { margin-right: 8px; }

/* Desktop adjustments */
@media (min-width: 768px) {
  .top-image {
    width: 50%;
    max-width: 400px;
    margin: 3rem auto;
  }
}

/* Utility */
a { color: black; }
p { margin: 0; }
