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

body {
  background: #1d1d1d;
}

.container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

header {
  font-family: "Spectral", serif;
  font-weight: 400;
  font-style: normal;
  padding: 36px 0 30px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  color: #fff;
}

.header-content a {
  text-decoration: none;
  color: #fff;
}

.header-item {
  width: 213px;
  display: flex;
  line-height: 1;
  transition: color 0.3s ease;
}

.header-item:hover {
  color: #c7ff00;
}

.header-item-left {
  display: flex;
  justify-content: flex-start;
}

.header-item-center {
  justify-content: center;
}

.header-item-right {
  justify-content: flex-end;
}

.site-content {
  padding-bottom: 100px;
}

.svg-logo {
  width: 100%;
  display: flex;
  margin-bottom: 40px;
}

.svg-logo img {
  width: 100%;
}

.image-with-text {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 500px;
}

.image-with-text img {
  z-index: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 440px;
}

.text-content {
  color: #c7ff00;
  font-size: 30px;
  z-index: 1;
  text-transform: uppercase;
  font-family: "Inter Tight", sans-serif;
  line-height: 1.2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.text-content p {
  font-weight: 300;
}

.text-content b {
  font-weight: 600;
}

.social-links {
  margin-top: 66px;
  display: flex;
  justify-content: space-between;
  width: 563px;
}

.social-links a {
  color: #c7ff00;
  text-decoration: none;
}

.social-links a:hover {
  text-decoration: underline;
}

@media (max-width: 1640px) {
  .image-with-text {
    max-width: 1200px;
  }
}

@media (max-width: 1240px) {
}

@media (max-width: 1024px) {
  .site-content {
    padding-bottom: 20px;
    height: 100vh;
  }

  .site-content .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
}

@media (max-width: 820px) {
  .text-content {
    font-size: 24px;
  }

  .image-with-text img {
    width: 400px;
  }
}

@media (max-width: 767px) {
  .header-content {
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    align-items: baseline;
  }

  .header-item-left,
  .header-item-center,
  .header-item-right {
    justify-content: flex-start;
  }

  .site-content {
    height: auto;
  }
  .site-content .container {
    justify-content: flex-start;
  }

  .image-with-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: auto;
  }

  .image-with-text img {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    transform: translateY(0);
  }

  .text-content {
    width: 100%;
    font-size: 18px;
  }

  .social-links {
    max-width: 100%;
    width: 100%;
  }
}
