* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  background-color: #222222;
  color: #d7d7d7;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 20px;
}

.title--main {
  font-size: 46px;
  margin-bottom: 20px;
}

.method-imit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Roboto Mono", monospace;
}

.method-imit::before {
  display: block;
  content: ".";
}

.method-imit::after {
  display: block;
  content: "()";
}

.console-imit__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.console-imit__arrows {
  font-family: "Roboto Mono", monospace;
  font-size: 46px;
  font-weight: 100;
  margin-right: 20px;
}

.obj-imit__key {
  font-family: "Roboto Mono", monospace;
  font-weight: 100;
  margin-right: 10px;
}

.obj-imit__value {
  font-family: "Roboto Mono", monospace;
  font-weight: 500;
}

.header {
  background-color: #222222;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
}

.header:after {
  content: "";
  position: absolute;
  left: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(90%, #222222));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), #222222 90%);
  height: 200px;
  width: 100%;
  color: #222;
}

.menu-mobile {
  display: none;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu__burger {
  position: fixed;
  top: 37px;
  right: 12px;
  padding: 8px 16px;
  z-index: 10;
}

.menu__burger-line {
  display: block;
  height: 3px;
  width: 20px;
  background-color: #d7d7d7;
}

.menu__burger-line:nth-child(2) {
  margin: 5px 0;
}

.menu__current {
  color: #b702b7;
  font-size: 24px;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: fixed;
  bottom: 0;
  right: -100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: calc(100% - 90px);
  background-color: #222222;
  list-style: none;
  font-family: "Roboto Mono", monospace;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.menu__list--active {
  right: 0;
}

.menu__list--active::before {
  content: "";
  position: absolute;
  left: -40%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(90%, #222222));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #222222 90%);
  height: 100%;
  width: 40%;
  color: #222;
}

.menu__item {
  padding: 16px 16px;
}

.menu__link {
  text-decoration: none;
  font-size: 32px;
  font-weight: 600;
  color: #d7d7d7;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

.menu__link--active {
  opacity: 0.7;
  color: #939393;
}

.menu__icon-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu__icon {
  font-size: 36px;
}

.about {
  margin: 30vh 0;
}

.about__main-title {
  font-size: 36px;
  font-family: "Roboto Mono", monospace;
}

.about__main-title--method {
  color: #b702b7;
}

@media screen and (min-width: 767px) {
  .header:after {
    content: "";
    position: absolute;
    left: 0;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(90%, #222222));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), #222222 90%);
    height: 200px;
    width: 100%;
    color: #222;
  }
  .menu__burger {
    display: none;
  }
  .menu__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: static;
    height: auto;
    width: auto;
    list-style: none;
  }
  .menu__item {
    padding: 8px 16px;
  }
  .menu__link {
    font-size: 16px;
  }
  .menu__link:hover {
    color: #b702b7;
  }
  .menu__link--current {
    font-size: 30px;
  }
  .menu__link--active {
    opacity: 0.7;
    color: #939393;
  }
  .menu__icon-wrapper {
    display: contents;
  }
  .menu__icon {
    font-size: 20px;
  }
}

@media screen and (min-width: 767px) {
  .about {
    margin: 30vh 50px;
  }
}
/*# sourceMappingURL=style.css.map */