/* ----------------------- BACKGROUND IMAGE -----------------------*/
.wrapper {
  height: 100%;
  width: 100vw;
  background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 850px) {
  .wrapper {
    height: 100%;
    width: 100%;
  }
}

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

  color: white;
  font-weight: bold;
}

/* ----------------------- CARDS -----------------------*/
.card-container {
  color: white;
}

.card {
  background: rgba(0, 0, 0, 0.1);
  margin: 5% 0;
}

.card-img-top {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card a {
  color: white;
  background-color: transparent;
  text-decoration: none;
  padding: 3%;
}

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