html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  height: 100vh;
  overflow: hidden;
}

.wrapper {
  display: grid;
  grid-template-columns: 1fr 7fr;
  overflow: hidden;

  @media (max-width: 800px) {
    grid-template-columns: 1fr;
  }
}

.sidebar {
  background: var(--excel-green-light);
  padding: 16px;
  padding-left: 32px;
  height: 100vh;
  /* color: white; */

  h1 {
    margin-bottom: 32px;
  }

  a,
  h2,
  h3 {
    margin-bottom: 16px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    color: white;
  }

  a:hover {
    text-decoration: underline;
  }

  @media (max-width: 800px) {
    display: none;
  }
}

.content-wrapper {
  height: 100vh;
  overflow: auto;

  .card-v2 {
    --shadow-color: hsl(140, 2%, 61%);
    filter: drop-shadow(1px 2px 8px var(--shadow-color));
    box-shadow: 0 1px 1px hsl(149, 88%, 26% / 0.075);
  }
}

.content {
  grid-column-start: 2;
  padding: 16px;
  padding-left: 32px;
  height: 100vh;
  margin-top: 16px;
  max-width: 1000px;
}

pre {
  background-color: rgb(229, 231, 235);
  padding: 8px;
  max-width: 600px;
  margin-top: 16px;
  overflow: auto;
  margin-bottom: 16px;
  border-radius: 2%;

  @media (max-width: 600px) {
    max-width: 200px;
  }
}

code {
  background-color: rgb(229, 231, 235);
  padding: 8px;
  border-radius: 2%;
}

.indent-title {
  margin-left: 16px;
}

.doc-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  max-width: 900px;

  div {
    margin: 8px;
    margin-left: 0px;
  }
}

hr {
  margin-bottom: 32px;
}

.indented-hr {
  max-width: 80%;
  margin-left: 10%;
}

#logo-container {
  height: 150px;
  width: 100%;
  /* background-color: white; */

  span,
  h1,
  h2,
  h3 {
    color: var(--excel-green-medium);

    filter: drop-shadow(1px 2px 8px var(--shadow-color));
    --shadow-color: hsl(149, 88%, 26%);
    box-shadow: 0 1px 1px hsl(149, 88%, 26% / 0.075);
  }
}

#title-wrapper {
  background: white;
  color: var(--excel-green-medium);

  text-align: center;
  margin-bottom: 32px;
  border-radius: 3%;

  .site-icon-wrapper {
    font-size: 6rem;

    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

  filter: drop-shadow(1px 2px 8px var(--shadow-color));
  --shadow-color: hsl(149, 88%, 26%);
  box-shadow: 0 1px 1px hsl(149, 88%, 26% / 0.075);
}

#documentation-title {
  text-align: center;
}

#optional-parameters-intro {
  margin-bottom: 32px;
}

#extra-whitespace {
  height: 1vh;
}

.card-v2 {
  margin-bottom: 32px;
}

#site-name {
  margin-bottom: 0px;

  h2 {
    margin-bottom: 0px;
  }
}

#site-name:hover {
  text-decoration: none;
}
