* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -2;
}

.colorLayer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(17, 24, 39, 0.85);
  mix-blend-mode: multiply;
  z-index: -1;
}

.content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 70%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 29%;
  margin-top: 10%;
}

.main-text-block {
  text-align: right;
  color: white;
  margin-top: 200px;
  margin-left: auto;
  width: fit-content;
}

.subtitle {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
}

.title {
  font-size: 48px;
  font-weight: 900;
  text-transform: lowercase;
  margin: 5px 0 15px 0;
  letter-spacing: -1px;
}

.text-small {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 20px;
}

.gradient-line-main {
  height: 3px;
  background: linear-gradient(270deg, #e51448 0%, rgba(229, 20, 72, 0) 100%);
  border-radius: 2px;

  width: 110%;
  min-width: 400px;
  margin-left: -10%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 20px;
}

.logo-footer {
  width: 56px;
  height: 56px;
}

.coming-soon-block {
  text-align: right;
  color: white;
}

.coming-soon-text {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
}

.gradient-line-footer {
  height: 3px;
  background: linear-gradient(90deg, #e51448 0%, rgba(229, 20, 72, 0) 100%);
  border-radius: 2px;

  width: 120px;
  margin-left: auto;
}
