* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: #fff;
  color: #000;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
}

.container {
  width: 100%;
  max-width: 620px;
}

p {
  margin-bottom: 1.5rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  opacity: 0.7;
}

.links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon-link {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.icon-link img,
.icon-link svg {
  width: 100%;
  height: 100%;
  display: block;
}

.icon-link img {
  object-fit: contain;
}

.icon-link svg {
  fill: currentColor;
}

@media (max-width: 640px) {
  body {
    align-items: flex-start;
    padding: 42px 28px;
  }
}
