/* GENERAL */
html, body {
    margin: 0;
    padding: 0;
}

body {
    background: url("/img/contact/blackboard.png");
    /* TEXT */
    color: white;
    font-family: arial;
}

.content {
  /* POSITIONING */
  position: relative;
  margin: 0 auto;
  /* SIZING */
  width: 80vw;
  /* TEXT */
  text-align: center;
}


h2 {
  /* POSITIONING */
  width: 50vw;
  margin: auto;
  margin-top: 30px;
  padding: 10px;
  /* STYLE */
  border-bottom: 2px solid white;
}

footer {
  /* POSITIONING */
  position: relative;
  margin: auto;
  margin-top: 50px;
  /* SIZING */
  width: 80vw;
  /* TEXT */
  text-align: center;
}

footer a {
  color: white;
  /*text-decoration: underline;*/
}

/* IMG */
.logo {
  width: 25%;
}

.wechatQR {
  max-width: 100%;
}

.supportApp {
  width: 50%;
  margin-top: 20px;
  border-radius: 25px;
}

/* RESPONSIVNESS */
@media only screen and (max-width: 900px) {
  .content {
    width: 90vw;
  }

  h2 {
    width: 80vw;
  }

  footer {
    width: 90vw;
  }

  .logo {
    width: 50%;
  }

  .supportApp {
    width: 100%;
    border-radius: 25px;
  }
}
