* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "HelveticaNeue", sans-serif;
  color: white;
  background-color: #000;
}

.landing-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #000;
}

.header {
  width: calc(100% - 2 * (150 / 1753 * 100%));
  margin: 32px calc(150 / 1753 * 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-ellipsis-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-ellipsis-text .logo-icon {
  width: 56px;
  height: 56px;
}

.logo-ellipsis-text .logo-text {
  font-size: 19px;
  font-weight: bold;
  font-family: "HelveticaNeue", sans-serif;
  color: white;
}

.based-on-inmersion {
  font-weight: bold;
  font-size: 19px;
}

.disclaimer-text {
  width: 80%;
  max-width: 900px;
  margin: 16px auto 32px;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.6;
}

.disclaimer-text h1 {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 20px;
}

.disclaimer-text h2 {
  font-weight: 400;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.disclaimer-text p,
.disclaimer-text li {
  margin-bottom: 1em;
}

.disclaimer-text ul {
  padding-left: 1.2em;
}

.footer {
  width: calc(100% - 2 * (150 / 1753 * 100%));
  margin: 30px calc(150 / 1753 * 100%);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: text-decoration 0.3s;
}

.footer-link:hover {
  text-decoration: underline;
}

.esp-eng-cat span {
  color: white;
}

.esp-eng-cat-link {
  color: white;
  text-decoration: none;
  transition: text-decoration 0.3s;
}

.esp-eng-cat-link:hover {
  text-decoration: underline;
}

.logo-ellipsis-text a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 768px) {
  .header, .footer {
    width: 90%;
    margin: 32px auto;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }

  .disclaimer-text {
    width: 90%;
    margin: 32px auto;
    font-size: 12px;
  }
}
