@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;400&family=Fira+Mono&display=swap');

body {
  min-height: 100vh;
  margin: 0;
  background: #f4f5ff;
  font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #232946;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.css-wave {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 320px;
  min-height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
  background: none;
}
.css-wave-left {
  left: 0;
}
.css-wave-right {
  right: 0;
  transform: scaleX(-1);
}

.css-wave svg {
  display: block;
  height: 180vh;
  width: 320px;
  position: absolute;
  top: -20vh;
  left: 0;
}

#content {
  position: relative;
  z-index: 1;
  margin: 5vh auto 0 auto;
  max-width: 700px;
  width: 98vw;
  padding: 0 2vw 2.2rem 2vw;
  text-align: left;
  background: none;
  box-shadow: none;
  border-radius: 0;
  border-left: 6px solid #d946ef;
  border-image: linear-gradient(180deg, #d946ef 0%, #a21caf 100%) 1;
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 0.18rem;
  line-height: 1.13;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -2px;
  color: #232946;
  text-shadow: 2px 4px 16px #f5d0fe;
}

h3 {
  margin-top: 1.5rem;
  font-size: 1.13rem;
  line-height: 1.22;
  color: #d946ef;
  letter-spacing: 0.5px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}

ul {
  list-style: square inside;
  padding-left: 0;
  margin: 0.9rem 0 0 0;
  line-height: 1.38;
}

li {
  margin: 0.45rem 0;
  font-size: 1.01rem;
  line-height: 1.38;
  color: #232946;
  font-family: 'Montserrat', Arial, sans-serif;
}

.username {
  font-family: 'Fira Mono', 'Courier New', monospace;
  background: #f5d0fe;
  color: #a21caf;
  border-radius: 0.4rem;
  padding: 0.09rem 0.32rem;
  font-size: 0.97em;
}

a, a:visited {
  color: #d946ef;
  text-decoration: underline dotted;
  font-weight: 600;
  transition: color 0.2s, text-decoration 0.2s;
}

a:hover {
  color: #a21caf;
  text-decoration: underline solid;
}

@media (max-width: 800px) {
  #content {
    margin-top: 1.5vh;
    padding: 0 0.6rem 1.2rem 0.6rem;
    max-width: 99vw;
    border-left-width: 3px;
  }
  h1 {
    font-size: 1.6rem;
  }
}