@font-face {
    font-family: inkFree;
    src: url(../fonts/Inkfree.ttf);
}

div {
    font-family: inkFree;
    color: rgb(255, 255, 255);
    font-size: 3vh;
    text-shadow: 4px 4px 5px black;
}

a {
  color: aqua;
}

.bg-body {
  position: relative;
  min-height: 100vh;    /* ensures full screen background */
  /*overflow: hidden; */

  background-color: rgb(14, 111, 144);
}

.bg-body::before {
  content: "";
  position: fixed;      /* fixed makes it always fill viewport */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-image: url("../assets/furReefBackground.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  filter: blur(10px);
  -webkit-filter: blur(10px);

  z-index: -1;          /* behind all content */
}

.center {
  text-align: center;
}

.image-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

#qr-code {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  height: 50%;
}

#poster-credits {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 70%;
  width: 70vw;
}



.poster {
  width: 30vw;
}

.main-poster {
  width: 70vw;
}

/* For Desktop screens */
@media only screen and (min-width: 1500px) {
    .poster {
      width: 18vw;
    }

    .main-poster {
      width: 40vw;
    }


    #qr-code {
      width: 25%;
      height: 25%;
    }

    #poster-credits {
      display: block;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      font-size: 100%;
      width: 70%;
    }
}