@font-face {
font-family: 'FairwallSans-Regular';
src: url("font/FairwallSans-Regular.otf") format("opentype");
}
@font-face {
font-family: 'Ambidexter';
src: url("font/ambidexter_regular.otf") format("opentype");
}
* {
  cursor: url(svg/cursor.svg), auto;
}
body {
  padding: 0;
  margin: 0;
  color: #fff;
  font-family: 'FairwallSans-Regular';
  overflow-x: hidden;
}
::selection {
  background: #D6F301;
  color: black;
}
header {
  font-size: calc(20px + 100vw/1280);
  margin-top: 5vh;
}
.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 3vw 0 3vw;
  color: #fff;
}
.underline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 7vw;
}
.underline img {
  max-width: 15vw;
}
.arrow {
  min-width: 15px;
  width: calc(25px + 5 * 100vw/1280);
  padding: 0 20px;
}
main {
  margin: 0 3vw;
}
a {
  text-decoration: none;
  cursor: url(svg/pointer.svg), auto;
}
a:active {
  background-color: #D6F301;
  color: black;
}
.title {
  font-size: calc(60px + 20 * 100vw/1280);
  font-family: 'Ambidexter';
}
.description {
  text-align: center;
  font-size: calc(25px + 100vw/1280);
  margin: 0 23vw;
}
.status {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin: 0 3vw;
}
.smear {
  position: relative;
  left: 28vw;
  max-width: 30vw;
  min-width: 20vw;
}
.status p {
  z-index: 10;
  max-width: 45vw;
  font-family: "Ambidexter";
  font-size: calc(25px + 5 * 100vw/1280);
}
.roles {
  font-size: calc(25px + 100vw/1280);
  text-align: center;
}
.about {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: -6vh 15vw 15vh 15vw;
}
.textAbout {
  margin: 3vh 0 8vh 0;
}
.textAbout > .title {
  font-size: calc(40px + 100vw/1280);
  margin: 5vh 10vw 0 10vw;
}
.textAbout > .paragraph {
  font-size: calc(25px + 100vw/1280);
  margin: 0 10vw;
}
.illustration {
  width: 100%;
  height: auto;
}
.illustrations {
  display: flex;
  justify-content: space-between;
}
.illustrations img {
  width: 18vw;
  cursor: url(svg/zoom.svg), auto;
}
.gitWrapper {
  display: grid;
  grid-template-rows: max-content;
  grid-template-columns: max-content;
  justify-content: center;
  margin-bottom: 15vh;
}
.gitWrapper:active {
  background: none;
}
.git {
  min-width: 10vw;
  max-width: 400px;
  grid-row: 1/span 1;
  grid-column: 1/span 1;
  cursor: url(svg/pointer.svg), auto;
}
.gitLight {
  min-width: 10vw;
  max-width: 400px;
  animation: light 3s infinite;
  grid-row: 1/span 1;
  grid-column: 1/span 1;
  cursor: url(svg/pointer.svg), auto;
}
.gitForIpad {
  opacity: 0;
}
@keyframes light {
    0%   { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}
.buttonToMainPage {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  justify-content: center;
  bottom: 60px;
  z-index: 20;
  opacity: 0.5;
  border: none;
  border-radius: 50px;
  width: min-content;
  background: #000;
  font-size: 25px;
  color: #fff;
  padding: 8px 45px;
  transition: all ease 1s;
}
.buttonToMainPage:hover {
  opacity: 1;
  background: #363636;
  color: #D6F301;
}
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: #2B2B2B;
  z-index: 1001;
}
.wrapper {
   display: flex;
   justify-content: center;
   margin-top: 45vh;
}
.preloader_text {
   width: 7ch;
   color: white;
   font-family: monospace;
   font-size: 30px;
   white-space: nowrap;
   overflow: hidden;
   border-right: 3px solid white;
   animation: cursor 0.1s step-end infinite,
   printed_text 0.5s steps(7);
}
@keyframes cursor {
  0% {
    border-color: white;
  }

  50% {
    border-color: transparent;
  }

  100% {
    border-color: white;
  }
}
@keyframes printed_text {
  from {
    width: 0;
  }
}
.loaded {
  display: none;
}

@media (max-width: 1000px) {
  header {
    font-size: 35px;
  }
  .title {
    font-size: 75px;
  }
  .description {
    font-size: 35px;
  }
  .textAbout > .text {
    font-size: 35px;
  }
  .textAbout > .title {
    font-size: 45px;
  }
  .about {
    margin: -6vh 5vw 0 5vw;
  }
  .git {
    font-size: 25px;
  }
  .illustrations img {
    width: 22vw;
  }
  .buttonToMainPage {
    bottom: 50px;
    min-width: 300px;
    min-height: 70px;
    font-size: 30px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .title {
    font-size: 30px;
  }
  .description {
    margin: 0;
    font-size: 20px;
  }
}
@media (min-width: 680px) and (max-width: 1400px) {
  .git {
    display: none;
  }
  .gitLight {
    display: none;
  }
  .gitForIpad {
    opacity: 1;
    color: black;
    margin-top: 5vh;
    font-size: 30px;
  }
}
