.container {
    display: flex;
    gap: 1rem;
    padding: 3rem;
}
.center {
    flex: 1;
    min-width: 0;
}

.left, .right {
    min-width: 20%;
    max-width: 20%;
    display: flex;
    justify-content: space-between;
    padding: 0;
    position: sticky;
    align-self: flex-start;
    top: 3rem;
}

.l1,.l2 {
    display: flex;
    flex-direction: column;
}

.l1 {
    min-width: fit-content;
    text-align: left;
    align-items: flex-start;

}
.l2 {
    text-align: right;
    align-items: flex-end;
    
}
.l2 button {
    text-align: right;
    font-weight: normal;
}

.nav__link {
    transition: transform 0.15s ease-in-out;
}

.nav__link:hover {
    transform: scale(1.1);
    transition: transform 0.15s ease-in-out;
}

/* GENERAL PAGE LAYOUT*/


body {
    background-color: #161618;
    color: #ebebec;
    font-family: "Lexend", sans-serif;
}

a {
  color: #ED7014;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}

button {
    color: #ED7014;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    appearance: none;

    font: inherit;
    font-size: 1em;
    font-weight: 900;

    transition: transform 0.15s ease-in-out;
}

/* MISC */

a:hover:not(.nav__link) {
  color: #ED7014;
  text-decoration: underline;
  transition: color 0.15s ease-in-out;
}

table {
  border-collapse: collapse;
  border-style: hidden; /* This cleanly deletes the outer edge borders */
}

th, td {
    border: 1px solid #646464;
    padding: 8px;
}

blockquote {
    border-left: 3px solid #ebebec;
    padding-left: 1rem;
    margin-left: 0;
}

::selection {
    background: rgba(237, 112, 20, 0.2);;
    color: white;
}

::-webkit-scrollbar {
    display: none;
}

strong {
  font-weight: normal;
  color:#ED7014;
}

/* code blocks */
.shiki {
    background-color: transparent !important;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 1em;
    overflow-x: auto;
}




@media (max-aspect-ratio: 4/3) {
  .right {
    display: none;
  }
}

@media (max-aspect-ratio: 1/1) {
  .left, .right {
    display: none;
  }
}