@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Manrope:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);
:root {
  --bs:rgba(234, 255, 0, 0.66);
}

html {
  font-family: Manrope;
  font-weight: 400;
}

main {
  max-width: 8in;
  margin: auto;
  padding: 30px;
}

blockquote {
  padding: 1.2em 30px 1.2em 50px;
  position: relative;
  margin: 30px 0;
}

blockquote::before {
  font-family: Arial;
  content: "“";
  font-size: 4em;
  position: absolute;
  left: 10px;
  top: -10px;
}

code {
  padding: 0.2em 0.4em;
  margin: 0;
  white-space: break-spaces;
  background-color: var(--bs);
  border-radius: 5px;
}

pre {
  -ms-overflow-style: none;
  scrollbar-width: none;
  background-color: var(--bs);
  padding: 20px 15px;
  margin: 10px 0;
  overflow: auto;
}
pre code {
  padding: 0;
  background-color: transparent;
  white-space: unset;
}

h1, h2, h3 {
  font-weight: normal;
}

p:has(img) img {
  max-width: 100%;
  max-height: 50vh;
  display: block;
  margin: 0 auto;
}
p:has(img) em {
  display: block;
  text-align: center;
  margin-top: 5px;
  font-style: italic;
  font-size: 85%;
  opacity: 0.85;
}
p:has(img:nth-child(even)) {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  overflow-x: scroll;
}

/*# sourceMappingURL=main.css.map */