.host-qr-section {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.host-qr-section h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-right: .25rem;
}

.qr-code-section {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.qr-code {
  background-color: var(--white);
  border-radius: 2px;
  box-shadow: var(--box-shadow);
}

.qr-code-scan-text {
  display: none;
  margin-right: .5rem;
}

@media (min-width: 768px) {
  .qr-code-scan-text {
    display: block;
  }
}

