* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #f7f7f5;
  color: #181818;
  font-family: Arial, sans-serif;
}

main {
  width: min(520px, calc(100% - 32px));
}

h1 {
  margin: 0 0 24px;
  font-size: 28px;
}

.buttons {
  display: grid;
  gap: 12px;
}

a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 22px;
  border: 1px solid #d8d8d4;
  border-radius: 10px;
  background: white;
  color: inherit;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: border-color 120ms, transform 120ms;
}

a:hover,
a:focus-visible {
  border-color: #181818;
  transform: translateY(-1px);
  outline: none;
}

a span:last-child {
  font-size: 20px;
  font-weight: 400;
}
