

body {
  background: #0d0d0d;
  color: #e8e8e8;
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: 10vh 5vw;
}


h2, p, ul, em, details {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 1.7px;
}


h1 {
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

time {
  font-family: "Courier New", Courier, monospace;
}

.title {
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  text-transform: lowercase;
}


.title span {
  position: relative;
  display: inline-block;
  opacity: 0.4;
  transition: all 0.6s ease;
}


.title span::after {
  content: "art";
  position: absolute;
  left: 0;
  top: 120%;
  font-size: 0.5em;
  letter-spacing: 0.3em;

  opacity: 0;
  transform: translateY(-12px);
  transition: all 0.8s ease;
}


.title span:hover {
  opacity: 1;
  letter-spacing: 0.5em;
  transform: translateY(4px);
}

.title span:hover::after {
  opacity: 0.9;
  transform: translateY(6px);
}


.title span::before {
  content: ".rt";
  position: absolute;
  left: 1px;
  top: 1px;
  opacity: 0.08;
}

.title span:hover::before {
  transform: translate(4px, 4px);
  opacity: 0.2;
}



h2 {
  font-size: 2.1rem;
  text-transform: uppercase;
  margin-bottom: 21px;
  opacity: 0.5;
   margin-top: 100px;
  font-weight: 600;
}

p {
  font-family: avenir;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.85;
}


a {
  color: #9a9a9a;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: 0.3s;
}

a:hover {
  color: #ffffff;
  border-bottom: 1px solid white;
}


