@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;700&display=swap");
body,
*,
*:before,
*:after {
  font-family: "Red Hat Display", sans-serif;
  color: #000000;
}

h1 {
  font-family: "Red Hat Display", sans-serif;
  font-size: 100px;
  margin: 0;
}

span {
  font-size: 25px;
}

a {
  color: inherit;
}
a:hover {
  color: inherit;
}

.content {
  height: 100vh;
  width: 100vw;
}
.content .container {
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
}
.content .container .inner-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 90vh;
}
.content .container .inner-content .text {
  display: flex;
  align-items: center;
}
.content .container .inner-content .text::before {
  content: "";
  border-top: 3px solid #000000;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 5px;
  width: 191px;
  display: block;
  margin-right: 100px;
}
.content .container .inner-content .bottom a {
  position: relative;
  text-decoration: none;
}
.content .container .inner-content .bottom a:hover:after {
  transform-origin: bottom left;
  transform: scaleX(1);
}
.content .container .inner-content .bottom a:after {
  background-color: #000000;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.25s ease-out;
  width: 100%;
}

.mouse-follow {
  position: absolute;
  width: 12px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  opacity: 0.8;
  background-color: rgb(158, 182, 243);
  z-index: 999;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: 0.06s, background-color 0.3s, width 0.3s, height 0.3s;
}
.mouse-follow.link {
  background-color: rgb(158, 243, 158);
  width: 48px;
}
.mouse-follow.cool_hover {
  width: 96px;
}
.mouse-follow.clicked {
  background-color: rgb(243, 158, 158);
  width: 6px;
}

.circle {
  animation: rotate 10s linear infinite;
  background: linear-gradient(90deg, rgba(158, 182, 243, 0.3) 0%, rgba(243, 158, 158, 0.3) 100%);
  border-radius: 50%;
  width: 3000px;
  aspect-ratio: 1/1;
  z-index: -1;
  position: absolute;
  left: calc(50% - 3000px);
  top: calc(50% - 1500px);
  overflow: hidden;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
*,
*::before,
*::after,
body,
html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #FEFCF7;
  color: #000000;
  overflow: hidden;
  max-width: 100vw;
  max-height: 100vh;
}

@media screen and (max-width: 1250px) {
  .text h1 {
    font-size: 80px;
  }
}
@media (max-width: 1099px) {
  .content .container .inner-content .text .text-inner {
    max-width: 78vw;
  }
  .content .container .inner-content .text h1 {
    font-size: 60px;
  }
  .content .container .inner-content .text::before {
    width: 150px;
  }
}
@media (max-width: 900px) {
  .mouse-follow {
    display: none;
  }
  span {
    font-size: 20px;
  }
  .content .container .inner-content {
    height: 80vh;
  }
  .content .container .inner-content .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .content .container .inner-content .text::before {
    width: 200px;
  }
}

/*# sourceMappingURL=style.css.map */
