@font-face {
  font-family: "GT Planar";
  src: url("fonts/GT-Planar-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT Planar";
  src: url("fonts/GT-Planar-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --pad: 50px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "GT Planar", sans-serif;
  background-color: #000;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("media/2kg-static-main-2.jpg") center / cover no-repeat;
  opacity: 0.6;
  z-index: -1;
}

p {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

.page,
.landing {
  height: 100%;
}

.landing {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--pad);
}

.logo {
  width: 100%;
  height: auto;
  display: block;
}

.landing-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 24px;
  align-items: end;
}

.landing-info__left {
  text-align: left;
}

.landing-info__center {
  text-align: center;
}

.landing-info__right {
  text-align: right;
}

@media (max-width: 768px), (max-height: 600px) {
  :root {
    --pad: 24px;
  }

  .landing-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 12px;
  }

  .landing-info__center,
  .landing-info__right {
    text-align: left;
  }
}
