@charset "UTF-8";
:root {
  --bg: #ffffff;
  --text: #222222;
  --muted: #555555;
  --accent: #c7254e;
  --highlight: #ffffff;
}

/* @media (prefers-color-scheme: dark){
  :root{
    --bg: #121212;
    --text: #eeeeee;
    --muted: #bbbbbb;
    --accent: #ff6f61;
    --highlight: #1d3557;
  }
} */
* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  display: flex;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

main {
  font-size: 18px;
}

::selection {
  background-color: rgba(253, 63, 79, 0.568627451);
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: var(--highlight);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 6px;
}

header {
  background: var(--highlight);
  padding: 5px 24px;
  width: 240px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 721px) {
  header {
    position: sticky;
    padding: 48px 24px;
    top: 0;
    height: 100vh;
    z-index: 100;
    background: var(--highlight);
  }
}
header h1 {
  margin-top: 1.7rem;
  font-size: 1.6rem;
  color: var(--accent);
}

header .lede {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
}

nav a {
  display: block;
  margin: 8px 0;
  color: var(--text);
  text-decoration: none;
}

nav a:hover {
  color: var(--accent);
}

main {
  flex-grow: 1;
  padding: 48px;
  max-width: 750px;
}

@media (min-width: 721px) {
  main {
    margin: 0 70px;
  }
}
h2 {
  font-size: 1.4rem;
  margin: 0 0 16px;
  color: var(--accent);
}

.lede {
  color: var(--muted);
}

section {
  margin-bottom: 48px;
}

ul.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.list h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  font-family: "JetBrains Mono", monospace;
}

.list p {
  margin: 4px 0 0;
  font-size: 1rem;
}

small {
  color: var(--muted);
  white-space: nowrap;
}

footer {
  margin-top: 40px;
  padding-bottom: 40px;
  color: var(--muted);
  font-size: 0.9rem;
}

blockquote {
  margin: 0;
  padding: 20px 28px;
  border-left: 0px solid var(--accent);
  font-style: italic;
  font-size: 1.15em;
  border-radius: 8px 16px 16px 8px;
  position: relative;
}

blockquote::before {
  content: "“";
  color: var(--accent);
  font-size: 2.5em;
  position: absolute;
  left: 16px;
  top: 8px;
  line-height: 1;
  opacity: 0.18;
  pointer-events: none;
}

blockquote p {
  display: block;
  margin-top: 12px;
  color: var(--accent);
  font-size: 0.95em;
  font-style: normal;
}

a {
  color: var(--accent);
}

.site-title {
  text-decoration: none;
}

li h3 {
  color: var(--accent);
}

a:focus-visible {
  outline: 2px dashed var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

@media (max-width: 720px) {
  body {
    flex-direction: column;
  }
  header {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  nav a {
    display: inline-block;
    margin: 0 12px;
  }
  main {
    padding: 24px;
  }
}
img {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
  pointer-events: none; /* Disables all pointer events, including right-click */
}

.profile-drawing {
  max-width: 240px;
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%), linear-gradient(to right, black 70%, transparent 100%);
  mask-composite: intersect;
  display: block;
  margin-left: auto;
  margin-right: 0;
}

main h1 {
  text-align: left;
  color: black;
  font-size: 32px;
}

.hello-world {
  font-family: "JetBrains Mono", monospace;
  font-weight: 900;
  font-size: 30px;
  color: var(--accent);
}

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