:root {
  --main-text-color: #1d1d1d;
  --accent-color: #fff900;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  color: var(--main-text-color);
  line-height: 1.6;
  padding: 32px;
  overflow-x: hidden;
}

.wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.container {
  display: flex;
}

.header {
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.08rem;
  margin-right: 100px;
}

.site-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  opacity: 0;
  filter: blur(10px);
  animation: titleFadeIn 2.3s ease-out forwards;
}

@keyframes titleFadeIn {
  to {
    opacity: 1;
    filter: blur(0px);
  }
}

.content {
  transform-origin: top left;
  animation: contentFadeIn 1.5s ease-out forwards;
}

@keyframes contentFadeIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: skewX(3deg);
  }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: skewX(0deg);
  }
}

.website-list {
  list-style-type: none;
  margin-top: 0;
  margin-bottom: 40px;
  padding-left: 0;
}

.website {
  display: flex;
  margin-bottom: 20px;
  word-break: break-all;
}

.website__number {
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 20px;
  white-space: nowrap;
}

.website__title {
  position: relative;
  z-index: 0;
  font-size: clamp(1.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.05rem;
  line-height: 1;
}

.website__title a {
  color: var(--main-text-color);
  text-decoration: none;
}

.website__title a:hover {
  background-color: var(--accent-color);
}

.website__title a:hover::after {
  opacity: 1;
}

.website__since {
  font-weight: 700;
}

.website__text {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
}

.footer {
  margin-bottom: 40px;
}

.copyright {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
}
