@charset "UTF-8";
/* Base */
/* Reset and base styles  */
@import url(https://fonts.googleapis.com/css?family=Manrope:200,300,regular,500,600,700,800);
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --container-width: 1200px;
  --container-padding: 15px;
  --font-main: "Montserrat", sans-serif;
  --font-accent: "Manrope", sans-serif;
  --font-titles: var(--font-accent);
  --page-bg: #fff;
  --text-color: #fff;
  --accent: #ac182c;
  --link-color: #fff;
  --laptop-size: 1199px;
  --tablet-size: 959px;
  --mobile-size: 599px;
}

.dark {
  --page-bg: #252526;
  --text-color: #fff;
}

@font-face {
  font-family: FirasansBook;
  font-display: swap;
  src: url("../fonts/FirasansBook.woff2") format("woff2"), url("../fonts/FirasansBook.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
  background-color: rgb(39, 39, 39);
  overflow-x: hidden;
}

body {
  background-color: var(--page-bg);
  color: var(--text-color);
  font-family: var(--font-main);
  text-wrap: balance;
}

img {
  display: block;
}

a {
  color: var(--link-color);
}

code {
  background-color: #e9f1f6;
  padding: 0.2rem;
  border-radius: 4px;
}

pre.code {
  overflow-x: auto;
  background-color: #e9f1f6;
  padding: 1rem;
  border-radius: 4px;
}

.title {
  color: #000;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
  .title {
    font-size: 40px;
  }
}

.button {
  line-height: 1;
  padding: 15px 25px;
  border: 1px solid #fff;
  border-radius: 5px;
  transition: all 0.2s ease-in;
  overflow: hidden;
}

.docs {
  display: grid;
  line-height: 1.5;
}
.docs p {
  margin: 1rem 0;
}
.docs ul li,
.docs ol li {
  list-style: none;
  margin-bottom: 0.5rem;
}
.docs ol li {
  list-style: decimal;
}
.docs section, .docs section.docs {
  padding: 40px 0;
}
.docs section + section {
  border-top: 1px solid #dae5e9;
}
.docs small {
  font-size: 1rem;
  color: rgb(172, 172, 172);
}
.docs .title-1:first-child,
.docs .title-2:first-child {
  margin-top: 0 !important;
}

.test {
  width: 600px;
  height: 300px;
  margin: 50px auto;
  background-color: #999;
  background-position: center center; /* x y */
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("./../img/project-02.jpg");
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .test {
    background-image: url("./../img/project-02@2x.jpg");
  }
}

.test-2 {
  width: 600px;
  height: 300px;
  margin: 50px auto;
  background-color: #999;
  background-position: center center; /* x y */
  background-size: cover;
  background-repeat: no-repeat;
  background-image: -webkit-image-set(url("./../img/project-02.jpg") 1x, url("./../img/project-02@2x.jpg") 2x);
  background-image: image-set(url("./../img/project-02.jpg") 1x, url("./../img/project-02@2x.jpg") 2x);
}

/* Отключить при необходимости */
.none {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.no-scroll {
  overflow-y: hidden;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.flex-center {
  justify-content: center;
}

/* Демо контент */
.content-demo {
  margin-bottom: 5rem;
  padding: 1rem;
  background-color: #dadada;
}

/* Контейнеры */
.container {
  margin: 0 auto;
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  width: 100%;
}

.container-full {
  padding: 20px var(--container-padding);
  max-width: 100%;
}

.container-left-50 {
  padding: 0 var(--container-padding);
  max-width: 50%;
}
@media (max-width: 820px) {
  .container-left-50 {
    max-width: 100%;
  }
}

.container-right-50 {
  padding: 0 var(--container-padding);
  max-width: 50%;
  margin-left: auto;
}
@media (max-width: 820px) {
  .container-right-50 {
    max-width: 100%;
  }
}

.container-right {
  padding-left: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}
@media (max-width: 1220px) {
  .container-right {
    padding-left: var(--container-padding);
  }
}

.container-left {
  padding-right: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}
@media (max-width: 1220px) {
  .container-left {
    padding-right: var(--container-padding);
  }
}

.container-half-left {
  padding-right: calc((100% - var(--container-width)) / 2 + var(--container-width) / 2);
  padding-left: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}
@media (max-width: 1220px) {
  .container-half-left {
    padding-left: var(--container-padding);
  }
}
@media (max-width: 820px) {
  .container-half-left {
    padding: 0 var(--container-padding);
  }
}

.container-half-right {
  padding-left: calc((100% - var(--container-width)) / 2 + var(--container-width) / 2);
  padding-right: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}
@media (max-width: 1220px) {
  .container-half-right {
    padding-right: var(--container-padding);
  }
}
@media (max-width: 820px) {
  .container-half-right {
    padding: 0 var(--container-padding);
  }
}

html, body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer {
  margin-top: auto;
}

.footer {
  padding: 60px 0;
  background-color: #e3e3e3;
}

/* Blocks */
.header-main {
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
}

.header-main__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-main__title {
  font-size: 24px;
  transition: all 0.2s ease-in;
}
.header-main__title:hover {
  transform: scale(1.1);
}

.header-main__text {
  font-size: 18px;
}

.header-main__button {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 504px) {
  .header-main__button {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.header-main__btn {
  position: relative;
  overflow: hidden;
}
.header-main__btn:hover {
  box-shadow: 1px 1px 25px 10px rgba(146, 148, 248, 0.4);
}
.header-main__btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(146, 148, 248, 0.4), transparent);
  transition: all 650ms;
}
.header-main__btn:hover:before {
  left: 100%;
}
@media only screen and (max-width: 580px) {
  .header-main__btn {
    padding: 5px 10px;
  }
}

.header {
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  height: 100%;
  border-bottom-right-radius: 80px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.night {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotateZ(45deg);
}

.shooting_star {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 2px;
  background: linear-gradient(-45deg, rgb(95, 145, 255), rgba(0, 0, 255, 0));
  border-radius: 999px;
  filter: drop-shadow(0 0 6px rgb(105, 155, 255));
  animation: tail 4000ms ease-in-out infinite, shooting 4000ms ease-in-out infinite;
}
.shooting_star::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  height: 2px;
  background: linear-gradient(-45deg, rgba(0, 0, 255, 0), rgb(95, 145, 255), rgba(0, 0, 255, 0));
  transform: translateX(50%) rotateZ(45deg);
  border-radius: 100%;
  animation: shining 4000ms ease-in-out infinite;
}
.shooting_star::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  height: 2px;
  background: linear-gradient(-45deg, rgba(0, 0, 255, 0), rgb(95, 145, 255), rgba(0, 0, 255, 0));
  transform: translateX(50%) rotateZ(45deg);
  border-radius: 100%;
  animation: shining 4000ms ease-in-out infinite;
  transform: translateX(50%) rotateZ(-45deg);
}
.shooting_star:nth-child(1) {
  top: calc(100% - 124px);
  left: calc(100% - 323px);
  animation-delay: 7561ms;
  opacity: 29;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(1) {
    top: calc(100% - -238px);
    left: calc(100% - 305px);
  }
}
.shooting_star:nth-child(1)::before, .shooting_star:nth-child(1)::after {
  animation-delay: 7561ms;
}
.shooting_star:nth-child(2) {
  top: calc(100% - -18px);
  left: calc(100% - 367px);
  animation-delay: 8214ms;
  opacity: 39;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(2) {
    top: calc(100% - 26px);
    left: calc(100% - 218px);
  }
}
.shooting_star:nth-child(2)::before, .shooting_star:nth-child(2)::after {
  animation-delay: 8214ms;
}
.shooting_star:nth-child(3) {
  top: calc(100% - 23px);
  left: calc(100% - 495px);
  animation-delay: 8729ms;
  opacity: 15;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(3) {
    top: calc(100% - 239px);
    left: calc(100% - 204px);
  }
}
.shooting_star:nth-child(3)::before, .shooting_star:nth-child(3)::after {
  animation-delay: 8729ms;
}
.shooting_star:nth-child(4) {
  top: calc(100% - 499px);
  left: calc(100% - 77px);
  animation-delay: 3374ms;
  opacity: 27;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(4) {
    top: calc(100% - 319px);
    left: calc(100% - 348px);
  }
}
.shooting_star:nth-child(4)::before, .shooting_star:nth-child(4)::after {
  animation-delay: 3374ms;
}
.shooting_star:nth-child(5) {
  top: calc(100% - 226px);
  left: calc(100% - 357px);
  animation-delay: 3259ms;
  opacity: 19;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(5) {
    top: calc(100% - 362px);
    left: calc(100% - 387px);
  }
}
.shooting_star:nth-child(5)::before, .shooting_star:nth-child(5)::after {
  animation-delay: 3259ms;
}
.shooting_star:nth-child(6) {
  top: calc(100% - 262px);
  left: calc(100% - 181px);
  animation-delay: 7439ms;
  opacity: 39;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(6) {
    top: calc(100% - 28px);
    left: calc(100% - 350px);
  }
}
.shooting_star:nth-child(6)::before, .shooting_star:nth-child(6)::after {
  animation-delay: 7439ms;
}
.shooting_star:nth-child(7) {
  top: calc(100% - 87px);
  left: calc(100% - 562px);
  animation-delay: 7313ms;
  opacity: 32;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(7) {
    top: calc(100% - -165px);
    left: calc(100% - 395px);
  }
}
.shooting_star:nth-child(7)::before, .shooting_star:nth-child(7)::after {
  animation-delay: 7313ms;
}
.shooting_star:nth-child(8) {
  top: calc(100% - 479px);
  left: calc(100% - 417px);
  animation-delay: 4041ms;
  opacity: 25;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(8) {
    top: calc(100% - -15px);
    left: calc(100% - 329px);
  }
}
.shooting_star:nth-child(8)::before, .shooting_star:nth-child(8)::after {
  animation-delay: 4041ms;
}
.shooting_star:nth-child(9) {
  top: calc(100% - 577px);
  left: calc(100% - 566px);
  animation-delay: 565ms;
  opacity: 40;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(9) {
    top: calc(100% - -50px);
    left: calc(100% - 337px);
  }
}
.shooting_star:nth-child(9)::before, .shooting_star:nth-child(9)::after {
  animation-delay: 565ms;
}
.shooting_star:nth-child(10) {
  top: calc(100% - 96px);
  left: calc(100% - 329px);
  animation-delay: 6122ms;
  opacity: 24;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(10) {
    top: calc(100% - 151px);
    left: calc(100% - 229px);
  }
}
.shooting_star:nth-child(10)::before, .shooting_star:nth-child(10)::after {
  animation-delay: 6122ms;
}
.shooting_star:nth-child(11) {
  top: calc(100% - 546px);
  left: calc(100% - 186px);
  animation-delay: 9643ms;
  opacity: 22;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(11) {
    top: calc(100% - 222px);
    left: calc(100% - 268px);
  }
}
.shooting_star:nth-child(11)::before, .shooting_star:nth-child(11)::after {
  animation-delay: 9643ms;
}
.shooting_star:nth-child(12) {
  top: calc(100% - 27px);
  left: calc(100% - 224px);
  animation-delay: 6698ms;
  opacity: 7;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(12) {
    top: calc(100% - 400px);
    left: calc(100% - 264px);
  }
}
.shooting_star:nth-child(12)::before, .shooting_star:nth-child(12)::after {
  animation-delay: 6698ms;
}
.shooting_star:nth-child(13) {
  top: calc(100% - 504px);
  left: calc(100% - 642px);
  animation-delay: 4651ms;
  opacity: 21;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(13) {
    top: calc(100% - -44px);
    left: calc(100% - 294px);
  }
}
.shooting_star:nth-child(13)::before, .shooting_star:nth-child(13)::after {
  animation-delay: 4651ms;
}
.shooting_star:nth-child(14) {
  top: calc(100% - 235px);
  left: calc(100% - 294px);
  animation-delay: 7804ms;
  opacity: 2;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(14) {
    top: calc(100% - -168px);
    left: calc(100% - 216px);
  }
}
.shooting_star:nth-child(14)::before, .shooting_star:nth-child(14)::after {
  animation-delay: 7804ms;
}
.shooting_star:nth-child(15) {
  top: calc(100% - 53px);
  left: calc(100% - 365px);
  animation-delay: 7702ms;
  opacity: 1;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(15) {
    top: calc(100% - -42px);
    left: calc(100% - 385px);
  }
}
.shooting_star:nth-child(15)::before, .shooting_star:nth-child(15)::after {
  animation-delay: 7702ms;
}
.shooting_star:nth-child(16) {
  top: calc(100% - 306px);
  left: calc(100% - 666px);
  animation-delay: 9854ms;
  opacity: 35;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(16) {
    top: calc(100% - 282px);
    left: calc(100% - 235px);
  }
}
.shooting_star:nth-child(16)::before, .shooting_star:nth-child(16)::after {
  animation-delay: 9854ms;
}
.shooting_star:nth-child(17) {
  top: calc(100% - 126px);
  left: calc(100% - 200px);
  animation-delay: 8672ms;
  opacity: 18;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(17) {
    top: calc(100% - 337px);
    left: calc(100% - 300px);
  }
}
.shooting_star:nth-child(17)::before, .shooting_star:nth-child(17)::after {
  animation-delay: 8672ms;
}
.shooting_star:nth-child(18) {
  top: calc(100% - 327px);
  left: calc(100% - 167px);
  animation-delay: 7739ms;
  opacity: 24;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(18) {
    top: calc(100% - -62px);
    left: calc(100% - 305px);
  }
}
.shooting_star:nth-child(18)::before, .shooting_star:nth-child(18)::after {
  animation-delay: 7739ms;
}
.shooting_star:nth-child(19) {
  top: calc(100% - 322px);
  left: calc(100% - 445px);
  animation-delay: 2030ms;
  opacity: 8;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(19) {
    top: calc(100% - 45px);
    left: calc(100% - 389px);
  }
}
.shooting_star:nth-child(19)::before, .shooting_star:nth-child(19)::after {
  animation-delay: 2030ms;
}
.shooting_star:nth-child(20) {
  top: calc(100% - 343px);
  left: calc(100% - 575px);
  animation-delay: 1813ms;
  opacity: 39;
}
@media only screen and (max-width: 460px) {
  .shooting_star:nth-child(20) {
    top: calc(100% - -100px);
    left: calc(100% - 287px);
  }
}
.shooting_star:nth-child(20)::before, .shooting_star:nth-child(20)::after {
  animation-delay: 1813ms;
}

@keyframes tail {
  0% {
    width: 0;
  }
  30% {
    width: 100px;
  }
  100% {
    width: 0;
  }
}
@keyframes shining {
  0% {
    width: 0;
  }
  50% {
    width: 30px;
  }
  100% {
    width: 0;
  }
}
@keyframes shooting {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(300px);
  }
}
@keyframes sky {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(405deg);
  }
}
.header__wrapper {
  padding: 50px 10px;
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 10;
}
@media only screen and (max-width: 454px) {
  .header__wrapper {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}

.header__foto {
  border-radius: 80px;
}
@media only screen and (min-width: 454px) {
  .header__foto {
    width: 50%;
  }
}

.header__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 426px) {
  .header__content {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
}

.header__title {
  font-size: 60px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .header__title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 426px) {
  .header__title {
    font-size: 40px;
    text-align: center;
  }
}

.header__text {
  font-size: 26px;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .header__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 426px) {
  .header__text {
    font-size: 18px;
    text-align: center;
  }
}

.header__text p {
  margin-bottom: 10px;
}

.header__button {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .header__button {
    display: flex;
    flex-direction: column;
    align-items: self-start;
  }
}
@media only screen and (max-width: 454px) {
  .header__button {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}

.header__btn {
  position: relative;
  overflow: hidden;
}
.header__btn:hover {
  box-shadow: 1px 1px 25px 10px rgba(146, 148, 248, 0.4);
}
.header__btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(146, 148, 248, 0.4), transparent);
  transition: all 650ms;
}
.header__btn:hover:before {
  left: 100%;
}

.inner-page {
  color: #000;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.inner-page__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 10px;
}

.inner-page__title {
  text-align: center;
}

.inner-page__text {
  text-align: center;
  font-size: 24px;
}

.inner-page__btn {
  color: #000;
  border: 1px solid #000;
  transition: all 0.2s ease-in;
}
.inner-page__btn:hover {
  background-color: #5d5d5d;
  color: #fff;
}

.inner-page__photo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact {
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  border-top-left-radius: 80px;
  padding: 60px 0;
}

.contact__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact__title {
  color: #fff;
}

.contact__link {
  padding: 0 20px;
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .contact__link {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }
}
@media only screen and (max-width: 426px) {
  .contact__link {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

.massage {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border: 1px solid #fff;
  border-radius: 10px;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
}
.massage:hover {
  box-shadow: 1px 1px 25px 10px rgba(146, 148, 248, 0.4);
}
.massage:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(146, 148, 248, 0.4), transparent);
  transition: all 650ms;
}
.massage:hover:before {
  left: 100%;
}
@media only screen and (max-width: 768px) {
  .massage {
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 426px) {
  .massage {
    padding: 10px 20px;
  }
}

.massage__img {
  width: 30px;
  height: 30px;
}

.porfolio__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.projects {
  padding: 0px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.project {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.card__img {
  border: 1px solid #5d5d5d;
  border-radius: 30px;
  transition: all 0.2s ease-in;
}
.card__img:hover {
  opacity: 0.9;
}

.project__title a {
  color: #000;
  text-decoration: underline;
}

.project__title {
  text-align: center;
  transition: all 0.2s ease-in;
  font-size: 20px;
}
@media only screen and (max-width: 426px) {
  .project__title {
    font-size: 14px;
  }
}
.project__title:hover {
  transform: scale(1.1);
}

.footer {
  background: radial-gradient(ellipse at top, #1b2735 0%, #090a0f 100%);
  padding: 20px 0;
  font-size: 12px;
  color: #5d5d5d;
  text-align: center;
  border-top: 1px solid #5d5d5d;
}

/* No styles code below. Only in modules */
/* Не пишите CSS код ниже. Только в подключаемых файлах *//*# sourceMappingURL=main.css.map */