#sectionMain {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6em 4em 2em;
  min-height: 100vh !important;

  .two__sides_outer {
    display: flex;
    align-items: center;
    max-width: 1150px;
    
    > div {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      &.two__sides_inner_side.right {
        align-items: flex-end;
      }
    }
  }
}

.dataset-info {
  padding-right: 3rem;
  max-width: 650px;
  
  h1#datasetTitle {
    margin: 0;
    font-family: "Roboto Slab", sans-serif;
    font-size: clamp(24px, 5vw, 38px);
    color: white;
  }

  p {
    font-size: clamp(13px, 2.5vw, 15px);
    margin: 14px 0 10px;
    color: #dedede;
  }

  .dataset-links {
    display: flex;
    gap: 2rem;
    margin-top: 28px;

    a {
      padding: .75rem 2rem;
      border-radius: 4px;
      border: 1px solid #dedede;
      font-size: clamp(14px, 3vw, 16px);
      color: #dedede;
      text-decoration: none;
      transition: all 0.2s ease-in-out;
      white-space: nowrap;

      &:hover {
        background-color: rgba(0, 0, 0, 0.15);
      }

      &:first-child {
        background-color: #E83D5D;
        border-color: transparent;

        &:hover {
          background-color: #cf3753;
        }
      }
    }
  }
}

div.code-block-outer {
  border: 1px solid #3d3c3e;
  border-radius: 4px;
  padding: .5rem;
  background-color: #2d2d2d;
  background-color: #282c35;
  background-color: #1F242D; 
  min-width: 450px;
  max-width: min(500px, 100%);
  overflow-x: auto;
  margin-left:2rem;

  pre {
    background-color: transparent;
  }
}
.comment {
  color: gray;
  font-style: italic;
}
.endpoint {
  color: #dedede;
}

@media screen and (max-width: 1199px) {
  #sectionMain {
    padding: 6em 2em 2em;
    
    .two__sides_inner_side.left {
      width: 100% !important;
    }
    .two__sides_inner_side.right {
      display: none !important;
    }
  }

  .dataset-info {
    padding-right: 0;

    h1#datasetTitle {
      text-align: center;
    }

    p {
      text-align: center;
    }

    .dataset-links {
      justify-content: center;
    }
  }
}