.logo-wrap {
  width: 100%;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-content {
  width: 70%;
  height: auto;
  background-color: transparent;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0.5rem 1rem 0 1rem;
  padding: 0.5rem 2rem;
}
.body-container {
  width: 100%;
  display: flex;
}

.componentSidebar {
  overflow-y: auto;
  position: sticky;
  top: 0;
  width: 20rem;
  background-color: transparent;
  height: 98vh;
}
.sidebar-main {
  margin: 0 1rem;
  font-size: 1.3rem;
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
}

.sidebar-main a {
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 2rem;
  border-radius: 5rem;
  text-decoration: none;
}
.link {
  color: var(--black-color);
}

.sidebar-heading {
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 2rem;
  border-radius: 5rem;
  text-decoration: none;
}

.sidebar-main a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: inset 0.1rem 0.1rem 0.3rem var(--white-color),
    inset -0.1rem -0.1rem 0.3rem var(--secondary-color);
}

::-webkit-scrollbar {
  width: 0.4rem;
}

::-webkit-scrollbar-track {
  background: var(--white-color);
  box-shadow: inset 0.1rem 0.1rem 0.2rem var(--white-color),
    inset -0.1rem -0.1rem 0.2rem var(--secondary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  box-shadow: inset 0.1rem 0.1rem 0.3rem var(--white-color),
    inset -0.1rem -0.1rem 0.3rem var(--secondary-color);
}

.installation-content,
.utilities-content h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
  font-weight: 600;
}
.installation-content p {
  font-size: 1.4rem;
  margin: 1rem 0.5rem 1rem 0;
  font-weight: 400;
}
.code_link {
  box-sizing: border-box;
  background-color: var(--white-color);
  height: 20rem;
  width: 100%;
  max-height: 46.625rem;
  padding: 1rem 0;
  margin: 2rem 0;
  overflow-y: hidden;
}

.example {
  font-size: 1.3rem;
  font-weight: 600;
  font-family: var(--font-heading);
}
.comp-decription {
  font-size: 1.4rem;
  margin: 0.5rem 0rem 1rem 0;
}
.comp-example {
  font-weight: 400;
  font-size: 1.3rem;
  margin: 1rem 0rem 3rem 0;
}
.comp-display-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--white-color);
  color: var(--black-color);
  box-shadow: 0.1rem 0.1rem 0.3rem var(--secondary-color);
}

.wrapper-comp {
  margin: 1rem;
}
.main-wrapper-comp {
  margin: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.doc-hr {
  margin: 4rem 0;
}
@media only screen and (max-width: 800px) {
  .componentSidebar {
    display: none;
  }
  .main-content {
    margin: auto;
    padding: 0;
    width: 90%;
  }
}
