body {
  font-family: "Grandstander", serif;
}

a {
  padding: 0.75rem 2rem;
  background: #181818;
  color: #f4f4f4;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 2px 8px #111;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-block;
}

a:hover,
a:focus {
  background: #232323;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px #111;
  text-decoration: none;
  outline: none;
}