:root {
  --escalia-background: #ec0138;

  --dark-background: #151515;
  --dark-container-background: #212121;
  --dark-color: #ffffff;
  --dark-button-color: #a4031f;

  --light-background: #ffffff;
  --light-container-background: #db162f;
  --light-color: #000000;

}

body {
  background-position: center;
  background-color: var(--dark-background);
  color: var(--dark-color);
  height: 10000%;
}

.logo_title {
  display: flex;
  gap: 20px;
}

.logo_title h1 {
  font-size: 27px;
  font-weight: normal;
  align-content: center;
}

.content {
  padding: 70px 1% 1% 1%;
  display: flex;
}

.header-link {
  color: var(--dark-color);
}

.header-link:hover {
  color: var(--dark-button-color);
}

.sidebar {
  width: 200px;
}

.sidebar {
  padding: 1% 0;
}

.docs-body {
  width: calc(100% - 200px);
}

.docs-introduction {
  margin: 1% 3%;
  padding: 2%;
  border-radius: 3px;
  background-color: var(--dark-container-background);
}

.docs-title {
  height: 130px;
  text-align: center;
  align-content: center;
  font-size: 30px;
  background: linear-gradient(120deg, #992bff, rgb(255, 59, 140));
  background-size: 1200px 100px;
  background-clip: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.docs-menu-link {
  width: 100%;
  text-align: left;
  padding: 7px 10px;
  background-color: transparent;
  border: none;
  font-size: 15px;
  color: var(--dark-color);
}

.sub-sidebar-item {
  padding-left: 10%;
}

.docs-menu-link:hover {
  color: palevioletred;
  transition: 0.3s linear;
}

.docs-controls {
  padding: 1% 0;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .logo_title {
    gap: 10px;
  }

  .logo_title h1 {
    font-size: 22px;
  }

  .sidebar {
    width: 100%;
  }

  .content {
    display: block;
  }

  .docs-body {
    width: 100%;
  }
}