body {
  font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;
  font-weight: normal; 
  font-size: 0.9rem;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: uppercase;
  font-size: 0.8rem;
  gap: 0.5rem;
  margin: 1rem 0;
  
  img {
    height: 75px;
  }
  
  p {
    margin: 0;
  }
  
  nav ul {
    display: flex;
    list-style-type: none;
    gap: 1ch;
    padding: 0;
    margin: 0;
  }
  
  a.disabled {
    pointer-events: none;
    text-decoration: line-through;
    color: rgb(127, 127, 127)
  }
}

hr {
  border: none;
  border-top: 1px solid rgb(128, 128, 128);
  margin: 1rem 0;
}

main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

h2, h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 1rem 0;
}

ol, ul {
  list-style-type: square;
  margin: 0;
  padding: 0 0 0 1.5rem;
  
  li {
    margin-bottom: 0.5rem;
  }
}

#what {
  
  
  img {
    float: right;
    width: 33%;
  }
  
  ol {
    flex: 1 0 auto;
  }
  
}

code {
  color: white;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 0.1rem 0.2rem;
  display: inline-block;
  border-radius: 1px;
}

p {
  max-width: 32rem;
}

footer {
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  
  img {
    width: 10%;
  }
}

#spec code {
  color: black;
  background: rgb(255, 255, 158);
}