* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
}

body {
  background: black;
  overflow-x: hidden;
}

/* ---------- ВЕРХ ---------- */

.top {
  padding-top: 55px;
  padding-bottom: 35px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 330px;
  max-width: 78%;
}

.socials {
  display: flex;
  align-items: center;
  gap: 28px;

  margin-top: 28px;
}

.socials img {
  height: 42px;
  width: auto;

  object-fit: contain;

  cursor: pointer;

  transition: 0.2s ease;
}

.socials img:hover {
  transform: scale(1.08) rotate(-3deg);
}

/* ---------- ЗУБЧИКИ ---------- */

.teeth {
  width: 100%;
  height: 44px;
  position: relative;
  z-index: 20;
  background-repeat: repeat-x;
  background-size: 32px 44px;
  pointer-events: none;
}

.teeth-top {
  margin-bottom: -44px;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='44' viewBox='0 0 32 44' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='32' height='18' fill='black'/%3E%3Cpolygon points='0,18 16,44 32,18' fill='black'/%3E%3C/svg%3E");
}

.teeth-bottom {
  margin-top: -44px;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='44' viewBox='0 0 32 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='0,26 16,0 32,26' fill='black'/%3E%3Crect y='26' width='32' height='18' fill='black'/%3E%3C/svg%3E");
}
/* ---------- ЦЕНТР ---------- */

.center {
  position: relative;
  background: white;
  min-height: 490px;
  padding: 90px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.noise {
  position: absolute;
  inset: 0;

  background-image: url("back.gif");

  background-size: cover;
  background-position: center;

  opacity: 0.12;

  pointer-events: none;
}

.soon {
  position: relative;
  z-index: 2;

  width: 720px;
  max-width: 88%;
}

/* ---------- НИЗ ---------- */

.legend {
  padding: 85px 20px 80px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.legend-text {
  width: 700px;
  max-width: 90%;
}

.bottom-logo {
  width: 120px;

  margin-top: 85px;
}

/* ---------- МОБИЛКА ---------- */

@media (max-width: 768px) {

  .top {
    padding-top: 36px;
    padding-bottom: 28px;
  }

  .logo {
    width: 240px;
  }

  .socials {
    gap: 18px;
    margin-top: 22px;
  }

  .socials img {
    height: 34px;
  }

  .center {
    min-height: 360px;
    padding: 50px 15px;

    margin-top: -40px;
    margin-bottom: -40px;
  }

  .soon {
    max-width: 96%;
  }

  .legend {
    padding: 60px 18px 65px;
  }

  .legend-text {
    max-width: 96%;
  }

  .bottom-logo {
    width: 90px;
    margin-top: 60px;
  }
}