.page {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  color: #000000;
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  padding: 20px 15px;
  background-color: #FFFFFF;
}

.header__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 90%;
  max-width: min-content;
  text-decoration: none;
  color: inherit;
}

.header__logo {
  background-image: url('/img/new-landing/header-logo.svg');
  min-width: 52px;
  height: 52px;
}

.main {
  padding: 0 15px 30px;
}

.main h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 90%;
  margin: 30px 0;
}

.main h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0 15px;
}

.main p {
  font-size: 16px;
  font-weight: 400;
  margin: 20px 0;
}

.main p span {
  font-weight: 700;
}

.main p a {
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  font-weight: 500;
  overflow-wrap: break-word;
  word-break: break-all;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 20px;
  row-gap: 20px;
  padding: 26px 15px;
  background-color: #7558E9;
  color: #E0D8FF;
  max-height: min-content;
  position: sticky;
  bottom: 0;
}

.footer__info {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.footer__copyright {
  margin: 0;
}

.footer__link {
  color: inherit;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.footer__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer__action-icon {
  width: 100%;
  overflow: hidden;
  display: block;
  transition: transform .12s ease, filter .12s ease;
  will-change: transform, filter;
  transform-origin: center;
}

.footer__action:hover .footer__action-icon,
.footer__action:active .footer__action-icon {
  transform: scale(1.02);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 1));
}

@media (min-width: 540px) {
  .main h1 {
    font-size: 30px;
  }

  .footer {
    justify-content: space-between;
  }
}

@media (min-width: 800px) {
  .header {
    padding: 20px 96px;
  }

  .main {
    padding: 0;
    margin: 0 96px;
    max-width: 1000px;
  }

  .footer {
    padding: 26px 96px;
  }

  .footer__actions {
    gap: 15px;
    margin: 0;
  }
}

@media (min-width: 1000px) {
  .footer__info {
    flex-direction: row;
    column-gap: 40px;
  }
}