body.links-page {
  display: flex;
  align-items: center;
  height: 100vh;
  margin: 0; }

.links-container {
  display: flex;
  flex-direction: column;
  align-items: center; }

.link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* even spacing */
  width: 100%;
  max-width: 300px;
  text-align: center;
  /* text inside .link-text is centered */
  margin: 0.5rem 0;
  padding: 1rem 1.5rem;
  background-color: #f0f0f0;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
  gap: 1rem;
  position: relative; }
  .link:hover {
    background-color: #ddd; }

.link-icon,
.link-spacer {
  flex: 0 0 auto;
  width: 1.5rem;
  text-align: center; }

.link-text {
  flex-grow: 1;
  text-align: center; }

footer {
  text-align: center; }
