@font-face {
  font-family: 'Iosevka';
  src: url('Iosevka.ttf')
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: #0e1111;
  font-family: 'Iosevka', monospace;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  padding-left:1em;
  padding-right:1em;
  padding-bottom: 5em;
  min-height: 100vh;
  width: 100%;
  max-width: 70em;
  margin: 0 auto;
  box-sizing: border-box;
}

.ascii {
  color: #91eaf5;
  font-size: 3em;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 0em;
}

.pronunciation {
  color: #f9f9f9;
  font-size: 1.6em;
  margin-bottom: 2em;
}

.emphasis {
  color: #91eaf5;
  text-decoration: none;
  font-size: inherit;
}

.hl {
  display: flex;
  gap: 0.4em;
  align-items: center;
  color: #f9f9f9;
  font-size: 1.3em;
}

.hl-label {
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.status {
  white-space: nowrap;
}

#discord_status[data-status="online"] {
  color: #0bf556;
}

#discord_status[data-status="idle"] {
  color: #daf203;
}

#discord_status[data-status="dnd"] {
  color: #df2525;
}

#discord_status[data-status="offline"] {
  color: #848884;
}

@media (max-width: 480px) {
  .hl {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px 8px;
  }
}

.hlp {
  color: #f9f9f9;
  font-size: 1.3em;
  text-decoration: none;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  gap: 0.8em;
}

p {
  color: #f9f9f9;
  font-size: 1.3em;
}

hr {
  width: 60%;
  border: 1px solid #91eaf5;
  margin-top: 2.5em;
  margin-bottom: 2.5em;
}

svg {
  width: auto;
  height: 1em;
  color: #f9f9f9;
}

span {
  white-space: nowrap;
}

.feed {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  gap: 0.5em;
  margin-top: 1em;
  border: 1px solid #91eaf5;
  width: fit-content;
  padding: 0.5em;
}

.feed-text {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
}

.feed-text p {
  margin: 0.2em;
}

.feed img {
  width: 100%;
  max-width: 6em;
}

#l {
  font-size: 0.9em;
}

