* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: system-ui, sans-serif;
}

/* Link Button Styling */
.link-button {
  display: inline-block;
  padding: 12px 24px;
  background: #0088ff;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.1s;
  cursor: pointer;
}

.link-button:hover {
  opacity: 0.9;
}

.link-button:active {
  transform: scale(0.98);
}

.link-button:focus {
  outline: 2px solid #0088ff;
  outline-offset: 2px;
}

/* Index page main styling */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 24px;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  color: #1e1e1e;
}
