body {
  background-color: #182018;
  color: #e9e4d6;
  font-family: Georgia, serif;
  margin: 0;
  padding: 0;
}

.container {
  width: 75%;
  max-width: 850px;
  margin: 70px auto;
  text-align: center;
}

/* title */
h1 {
  font-weight: normal;
  letter-spacing: 3px;
  font-size: 3em;
  color: #d8c9a7;
  margin-bottom: 10px;
}

/* intro text */
.intro {
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 35px;
  line-height: 1.7;
}

/* nav links */
nav {
  margin-bottom: 40px;
}

nav a {
  color: #d7d2c5;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1.1em;
  transition: 0.3s;
}

nav a:hover {
  color: #b7c7a3;
  border-bottom: 1px solid #b7c7a3;
}

/* main box */
.box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 18px;
  line-height: 1.8;
  backdrop-filter: blur(4px);
}

/* your symbol in corner */
.container::before {
  content: "ps";
  position: fixed;
  top: 20px;
  right: 25px;
  font-size: 1.2em;
  opacity: 0.3;
}

/* subtle divider */
hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 25px 0;
}