#app {
  width: 100%;
  height: 100%;
}
#app {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(#5bb1ef, #9EF1EA, #bfffa7);
  margin: 0 auto;
  flex-direction: column;
}
#app #root {
  max-width: 94%;
  margin: 0 3%;
  align-items: center;
  padding: 2rem;
  background-color: #6dc5bd;
  border: 0.35rem solid #b1b3ed;
  border-radius: 0.7rem;
}
#app #info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
#app .theme {
  width: 76%;
  margin: 0 auto;
}
#app .dept {
  width: 100%;
  margin: 0 auto;
}
#app .dept img {
  width: 70%;
  margin: 0 auto;
}
#app .link_qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.3rem;
  margin: 0 auto;
}
#app .link_qr img {
  width: 80%;
  height: 80%;
}
#app .link_qr p {
  margin-top: 0.5rem;
  font-size: 24px;
  color: #fff;
}
.links {
  margin-top: 20px;
  text-align: center;
  font-size: 0.5rem;
  font-weight: bold;
}
.links input {
  width: 300px;
  height: 42px;
  padding: 0 10px;
  font-size: 20px;
  border: 1px solid #3b4085;
}
@media (max-width: 800px) {
  .link_qr p {
    font-size: 16px !important;
  }
  .links {
    display: none;
  }
  #info {
    margin-bottom: 1.5rem !important;
  }
}
@media (min-width: 480px) {
  #root {
    display: flex;
    flex-direction: row;
  }
}
@media (max-width: 480px) {
  #app {
    box-sizing: border-box;
  }
  .theme {
    width: 100% !important;
    margin: 0 auto;
  }
  .link_qr img {
    width: 60% !important;
  }
  .link_qr p {
    font-size: 14px !important;
    text-align: center;
  }
}
