body {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
}

.link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;

  text-decoration: none;
  color: inherit;
}

.link > img {
  width: 1.5rem;
  height: 1.5rem;
}

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}