:root {
  --color-primary: #333;
  --color-secondary: #71717a;
}

body {
	font-family: "Inter", sans-serif;
	font-weight: 400;
	font-style: normal;
	background-color: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  padding: 0;
  color: var(--color-primary);
}

main {
  width: 340px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

a {
	color: var(--color-primary);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	background: white;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.title {
	position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 2em;
  gap: 0.5em;
}

.title h1 {
  font-size: 2em;
  margin: 0;
}

.title p {
  margin: 0;
  color: var(--color-secondary);
}

.section-title {
	text-align: center;
  margin: 0 0 1em;
  font-size: 0.7em;
  font-weight: 400;
  color: #ccc;
  text-transform: uppercase;
}

.section-title.mt {
  margin-top: 2em;
}

.buttons {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 1em;
  width: 100%;
}

.button {
  position: relative;
  color: inherit;
  display: inline-flex;
  gap: 1em;
  align-items: stretch;
  padding: 1em;
  text-decoration: none;
  transition: transform 80ms ease-in-out;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.5em;
}

.button > img,
.button > svg {
  width: 60px;
  height: 60px;
  object-fit: contain;
  grid-column: 1;
  grid-row: 1 / -1;
}

.button > .content {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5em;
}

.button > h1,
.button > p {
  grid-column: 2;
}

.button h1 {
  font-size: 1.2em;
  margin: 0;
}

.button p {
  font-size: 1em;
  margin: 0;
  color: var(--color-secondary);
}

.button:hover {
  border: 1px solid #ccc;
  text-decoration: none;
}

.info {
  margin: 1em 0 0;
  font-size: 0.8em;
  line-height: 1.5;
  color: var(--color-secondary);
  text-align: center;
}

.buttons + .info {
  margin-top: 3em;
}

.badge {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 0.8em;
  padding: 0.2em 0.5em;
  border-radius: 1em;
  background-color: #f4f4f5;
  color: #71717a;
}

.sym::before {
  content: '@';
  color: #ccc;
}