@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

body   {
  font-family: "Roboto";
  color: rgb(209, 209, 209);
  font-weight: 400;
  tab-size: 2;
  background-color: #111;
}

.wrapper   {
  position: relative;
  width: 100vw;
  overflow: hidden;
}

[class*="__container"]   {
  max-width: 1320px;
  margin: 0px auto;
  padding: 0px 15px;
}

.header   {
  font-size: calc(16px + (24 - 16)*((100vw - 320px) / (1440 - 320)));
}

.header__container   {
  display: flex;
  align-items: center;
  height: 60px;
}

.header__logo   {
}

.main   {
}

section   {
  margin-bottom: 110px;
}

.main__container   {
  margin-top: 70px;
}

.first-screen   {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.first-screen__text   {
}

.first-screen__title   {
  margin-bottom: 110px;
  font-size: 80px;
  line-height: 94px;
}

.first-screen__subtitle   {
  width: 335px;
  color: #696969;
  font-size: 24px;
  line-height: 28px;
}

.first-screen__image   {
  margin-left: 20px;
}

.first-screen__image img  {
  height: 600px;
}

.first-screen::before   {
  content: '';
  z-index: -20;
  position: absolute;
  left: -20%;
  width: 2900px;
  height: calc(200px + (500 - 200)*((100vw - 320px) / (1440 - 320)));
  background-color: #151515;
  rotate: 45deg;
}

@media (max-width: 1440px) {

  .first-screen::before   {
    left: -20%;
    width: 2900px;
  }
}

@media (max-width: 1240px) {

  .first-screen::before   {
    left: 0%;
    width: 1900px;
  }

  .first-screen__image img  {
    height: calc(200px + (600 - 200)*((100vw - 320px) / (1440 - 320)));
  }

  .first-screen__title   {
    margin-bottom: 110px;
    font-size: calc(28px + (80 - 28)*((100vw - 320px) / (1440 - 320)));
    line-height: calc(28px + (94 - 28)*((100vw - 320px) / (1440 - 320)));
  }

  .first-screen__subtitle   {
    width: 335px;
    font-size: calc(16px + (24 - 16)*((100vw - 320px) / (1440 - 320)));
  }
  
  .first-screen::before   {
    left: -10%;
  }
}

@media (max-width: 1000px) {

  .first-screen::before   {
    left: -20%;
  }
}

@media (max-width: 880px) {

  .formatter__text-blocks   {
    display: block;
  }

  .first-screen::before   {
    left: -60%;
  }

  .first-screen__title   {
    width: calc(280px + (500 - 280)*((100vw - 320px) / (1440 - 320)));
    margin-bottom: calc(35px + (110 - 35)*((100vw - 320px) / (1440 - 320)));
  }

  .first-screen__subtitle   {
    width: calc(240px + (335 - 240)*((100vw - 320px) / (1440 - 320)));
  }

  .first-screen__image img  {
    display: none;
  }
}

@media (max-width: 500px) {

  .first-screen::before   {
    width: 800px;
  }
}

.formatter   {
}

.formatter__text-blocks   {
  display: flex;
  justify-content: center;
}

.formatter__input   {
}

.text-block   {
  margin: 0 20px;
}

.text-block__title   {
  height: 25px;
  margin-bottom: 10px;
  color: #696969;
  font-size: 20px;
  line-height: 28px;
}
.text-block__result {
  position: relative;
}

.copyBtn {
  position: absolute;
  right: 0;
  z-index: 1;
  width: 80px;
  height: 80px;
  background-color: #111;
  border-top: 1px #fff solid;
  border-right: 1px #fff solid;
}

.copyBtn img{
  transition: 0.3s;
  width: 40px;
  height: 40px;
}

.copyBtn:hover img{
  width: 45px;
  height: 45px;
}

.copyBtn:active img{
  width: 35px;
  height: 35px;
}

.text-block__body   {
  resize: none;
  width: 40vw;
  max-width: 80vh;
  height: 60vh;
  padding: 20px;
  color: #fff;
  font-size: 18px;
  background-color: #111;
  border: 1px #fff solid;
  overflow: scroll;
}


.text-block__body::placeholder   {
  color: #3E3E3E;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}

.formatter__output   {
}

.string   {
}

.placeholder-text   {
  color: #3E3E3E;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}

.formatter__btn   {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn   {
  padding: 10px 60px;
  color: #FFFFFF;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 38px;
  background-color: #111111;
  border: 1px #fff solid;
  transition: 0.2s;
}

.btn:hover   {
  padding: 12px 65px;
  font-size: 32px;
  transition: 0.3s;
}

.btn:active   {
  padding: 8px 55px;
  font-size: 28px;
}

@media (max-width: 880px) {
  section   {
    margin-bottom: 50px;
  }

  .text-block   {
    width: 100%;
    margin: 0;
    margin-bottom: 20px ;
  }

  .formatter__text-blocks   {
    display: block;
  }

  .text-block__body   {
    width: 100%;
    height: 40vh;
    padding: 20px;
    color: #fff;
    font-size: 18px;
    background-color: #111;
    border: 1px #fff solid;
  }
}


