body {
  font-family: Montserrat, sans-serif;
  font-weight: 900;
}
body, body * {
  cursor: none;
}

.shapes {
  position: relative;
  height: 100vh;
  width: 100vw;
  background: #000000;
  overflow: hidden;
}

.shape {
  will-change: transform;
  position: absolute;
  border-radius: 50%;
}
.shape.shape-1 {
  background: #ff0000;
  width: 650px;
  height: 650px;
  margin: -325px 0 0 -325px;
}
.shape.shape-2 {
  background: #ff6600;
  width: 440px;
  height: 440px;
  margin: -220px 0 0 -220px;
}
.shape.shape-3 {
  background: #07db4e;
  width: 270px;
  height: 270px;
  margin: -135px 0 0 -135px;
}

.content {
  top:0 ;
  left: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background: #000000;
  mix-blend-mode: screen;
}

h1 {
  font-size: 100px;
  color: #ffffff;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  line-height: 1.2;
}

@media (min-width: 419px) {
  h1 {
    font-size: 100px;
    font-size: calc((0.0989119683 * 100vw + (58.5558852621px)));
  }
}
@media (min-width: 1430px) {
  h1 {
    font-size: 200px;
  }
}

.cursor {
  position: fixed;
  background: #2128bd;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border-radius: 50%;
  will-change: transform;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 10000;
}

::-moz-selection {
  color: #fff;
  background: #2128bd;
}

::selection {
  color: #fff;
  background: #2128bd;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icon {
  color: #ffffff;
  font-size: 24px;
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: #dddddd;
  transform: scale(1.1);
}

.linkedin:hover {
  color: #0077b5;
}

.email:hover {
  color: #ffa600;
}

.telegram:hover {
  color: #0088cc;
}

.twitter:hover {
  color: #1da1f2;
}

.instagram:hover {
  color: #e4405f;
}

