:root {
  --max-widht: 1200px;
  --bg: #14161c;
  --fg: #fff;
  --secondary: #d6d6d6;
  --gray: #babbbd;
  --lc: #cfd0d2;
}

body {
  height: 100vh;
  background-image: url("../images/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--fg);
}

.main {
  width: var(--max-widht);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bs-brand {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bs-brand img {
  display: block;
  margin-inline: auto;
}

.bs-logo-text {
  margin-block: 26px;
}

.bs-slogan {
  font-size: 42px;
  font-weight: 400;
  text-align: center;
  color: var(--secondary);
  line-height: 1.5238095238;
  width: 677px;
}

.bs-link {
  width: 400px;
  height: 110px;
  background: #000;
  border-radius: 20px;
  border: 2px solid #2e3547;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--fg);
  gap: 18px;
}

.bs-link img {
  width: 58px;
  height: 66px;
}

.bs-link .text {
  font-size: 24px;
  color: var(--lc);
}

.bs-link .content {
  height: 66px;
  line-height: 1.2;
}

.bs-link .platform {
  font-size: 36px;
  font-weight: 600;
}

.gap-40 {
  gap: 40px;
  margin-block-start: 40px;
}

.bs-footer {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--max-widht);
  margin-inline: auto;
  color: var(--gray);
  font-size: 18px;
}
.bs-footer a {
  text-decoration: none;
  color: var(--gray);
}

.trailing a {
  text-decoration: underline;
}

.trailing a:hover {
  text-decoration: none;
}

.trailing span {
  opacity: 0.5;
}

.trailing a.mail {
  text-decoration: none;
}
.trailing a.mail img {
  margin-inline-end: 0.1em;
}
