  * {box-sizing: border-box}
body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #22356F;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.landing-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.landing-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.logo,
.navbar {
    z-index: 1;
}

.navbar {
  width: 80%;
  left: 10%;
  background-color: transparent;
  overflow: auto;
  position: absolute;
  bottom: 0;
  margin-bottom: 50px;
}

.navbar a {
  float: left;
  padding: 12px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  width: 20%;
  text-align: center;
}

.navbar a:hover {
  text-decoration: underline;
  font-weight: 700;
  text-underline-offset: 8px;
}

.navbar a.active {
  text-decoration: underline;
  font-weight: 700;
  text-underline-offset: 8px;
}

.logo {
  position: absolute;
  top: 25%;
  left: 50%;
  z-index: 1;
  width: min(700px, calc(100% - 3rem));
  height: auto;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 600px) {
  .navbar a {
    float: none;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding-bottom: 20px;
  }

  .logo {
    width: min(350px, calc(100% - 2rem));
  }
}