@font-face {
  font-family: "Heading Now";
  src: url("./fonts/Heading-Now-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Heading Now";
  src: url("./fonts/Heading-Now-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PARIFont";
  src: url("./fonts/PARIFont-Extrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-heading-now-sans: "Heading Now", Arial, sans-serif;
  --font-pari-sans: "PARIFont", Arial, sans-serif;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

body.modal-open {
  height: 100dvh;
  overflow: hidden;
}

body.startupscreen-open {
  height: 100dvh;
  overflow: hidden;
}

body {
  background: #0f1e28;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

/* tech works */

.container {
  padding-top: 15px;
  width: 100%;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  display: flex;
  justify-content: center;
  background-color: #0f1e28;
}

.content {
  width: 100%;
  max-width: 1200px;
  position: relative;
}

.header {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.headerLogo {
  width: 157px;
  height: auto;
}
.headerLogo svg {
  width: 100%;
  height: 100%;
}

.body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.textWrap {
  padding-right: 18px;
  padding-bottom: 97px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  margin-left: 130px;
}
@media (max-width: 375px) {
  .textWrap {
    margin-left: 15px;
  }
}
@media (min-width: 375px) and (max-width: 768px) {
  .textWrap {
    margin-left: calc(15px + (130 - 15) * (100vw - 375px) / (768 - 375));
  }
}

.badge {
  padding: 10px;
  position: absolute;
  top: 76px;
  left: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #00c7b1;
  color: #0f1e28;
  font-size: 13px;
  line-height: normal;
  transform: rotate(-10deg);
  font-family: var(--font-heading-now-sans);
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  text-wrap: nowrap;
}

.title {
  max-width: 560px;
  color: #fff;
  font-size: 96px;
  line-height: 100%;
  text-align: left;
  font-family: var(--font-pari-sans);
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.description {
  color: #fff;
  font-size: 16px;
  line-height: normal;
  font-family: var(--font-heading-now-sans);
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
}

.ballWrap {
  position: absolute;
  top: 132px;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
  right: -70px;

  img {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 375px) {
  .ballWrap {
    right: -116px;
  }
}
@media (min-width: 375px) and (max-width: 768px) {
  .ballWrap {
    right: calc(-116px + (-70 + 116) * (100vw - 375px) / (768 - 375));
  }
}

.imageWrap {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
  aspect-ratio: 75/26;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
}
.imageWrap img {
  object-fit: cover;
  object-position: center;
}

.topBlur {
  width: 165px;
  height: 142px;
  position: absolute;
  top: 0;
  left: -82px;
  border-radius: 100px;
  background: #00c7b1;
  filter: blur(50px);
  flex-shrink: 0;
  opacity: 0.4;
}

.middleBlur {
  position: absolute;
  top: 20px;
  right: 0;
  flex-shrink: 0;
  opacity: 0.4;

  img {
    width: 525.675px;
    height: 446.886px;
  }
}

.bottomBlur {
  position: absolute;
  right: -60px;
  bottom: -171px;
  flex-shrink: 0;
  opacity: 0.4;

  img {
    width: 525.675px;
    height: 446.886px;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
