/* ----------------------- LINKS NAVIGATION -----------------------*/
.link-container {
  border-style: solid;
  border-color: white;
  border-width: 1px;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.link-container:hover {
  background-color: lightblue;
}

.nav-links a {
  color: white;
  background-color: transparent;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.nav-links a:hover {
  color: blue;
  background-color: lightblue;
  text-decoration: none;
}

/* ----------------------- BACKGROUND IMAGE -----------------------*/
/* wrapper for opacity for white font readability*/
.wrapper {
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.4);
}

body {
  background-image: url("../images/space_background.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: fixed;
  background-size: 100% 100%;
  background-position: center center;

  color: white;
  font-weight: bold;
}

@media (max-width: 1200px) {
  body {
    background-size: auto 100%;
  }
}
