@font-face {
    font-family: 'MononokiNF';
    src:  url('MononokiNerdFont-Regular.ttf') format('truetype');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "MononokiNF", monospace;
  font-size: 14px;
}

body {
  background:  #11111b ;
  color: #babbf1;
  min-height: 100vh;
  display: flex;
  justify-content: left;
  align-items: left;
  padding: 10px;
}

.ui {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.header {
  display: flex;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #30363d;
  padding-bottom: 16px;
}

.pfp {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 20%;
  border: 3px solid #b4befe;
}

.info h1 {
  font-size: 22px;
  color: #7ee787;
}

.info p {
  font-size: 14px;
  line-height: 1.5;
}

.muted {
  color: #8b949e;
}

.block h2 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #58a6ff;
}

.block p,
.block li {
  font-size: 12px;
  line-height: 1.6;
  color: #c9d1d9;
}

.block ul {
  list-style: none;
  padding-left: 0;
}

.block li::before {
  content: "> ";
  color: #7ee787;
}


.link {
  color: #89b4fa;
  text-decoration: none;
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 1.4em;
  background: #cdd6f4;
  vertical-align: text-bottom;
  margin-left: 0px;
  animation: blink 1s steps(1) infinite;
}


@keyframes blink {
  50% {
    visibility: hidden;
  }
}

.letter {
  color: #f38ba8;  
  text-decoration: none;
}

.ascii-mug {
  position: fixed;
  opacity: 0.6;
  bottom: 10px;
  right: 10px;
  font-family: monospace;
  font-size: 14px;
  line-height: 1.2;
}


.quote-box {
  position: fixed;
  bottom: 10px; 
  left: 10px;  
  opacity: 0.6;
  font-size: 14px;
  line-height: 1.4;
  z-index: 10;
}


.steam {
  display: inline-block;
  color: var(--dim);
  animation: float 2.5s steps(10) infinite;
}

.s1 {
  margin-left: 6ch;
  animation-delay: 0.7s;
}

.s2 {
  margin-left: 7ch;
  animation-delay: 0.5s;
}
.s3 {
  margin-left: 5ch;
  animation-delay: 0;
}
@keyframes float {
  0%   { transform: translateY(0); opacity: 0.2; }
  50%  { transform: translateY(-6px); opacity: 1; }
  100% { transform: translateY(-12px); opacity: 0; }
}
/* i love melvi so much <3

