﻿body,
html {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
.page-wrapper .landingpage__content {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-wrapper .logo-image-wrapper {
  min-width: 100px;
}
.page-wrapper .logo-image {
  width: 100px;
}
.page-wrapper .landingpage__background-image {
  position: fixed;
  inset: 0;
}
.page-wrapper .landingpage__background-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.page-wrapper .landingpage__background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-wrapper .navigation__links {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px;
  gap: 60px;
  flex-direction: row;
  flex-wrap: wrap;
}
.page-wrapper .navigation__links * {
  white-space: nowrap;
  text-align: center;
}
.page-wrapper .navigation__links :nth-child(1) {
  order: 2;
  max-width: 300px;
}
.page-wrapper .navigation__links :nth-child(2) {
  order: 1;
}
.page-wrapper .navigation__links :nth-child(3) {
  order: 3;
}
