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

html, body {
  min-height: 100vh;
  width: 100%;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: linear-gradient(#FC354C, #6E48AA);
  transition: background 0.05s ease;
  position: relative;
  padding: 60px;
}

.label {
  position: fixed;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  opacity: 0.5;
}
.top-left    { top: 24px; left: 28px; }
.top-right   { top: 24px; right: 28px; }
.bottom-left { bottom: 24px; left: 28px; }
.bottom-right{ bottom: 24px; right: 28px; }

.grid {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.item {
  text-decoration: none;
  color: #000;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s, opacity 0.15s;
  line-height: 1.2;
}

.item:hover {
  border-bottom: 1px solid #000;
}

.s1 { font-size: 16px; }
.s2 { font-size: 26px; font-style: italic; }
.s3 { font-size: 42px; }