@import url("editor-content.css");

:root {
  --site-width-large: 600px;
  --site-inner-spacing: 40px;

  font-family: "Speedee", sans-serif;
}

.container {
  width: 100%;
  max-width: var(--site-width-large);
  padding-left: var(--site-inner-spacing);
  padding-right: var(--site-inner-spacing);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Utilities */
.text-align-center {
  text-align: center;
}

/* Header */
.header-thumbnail-wrapper {
  margin-top: 28px;
  text-align: center;
}

.header-thumbnail {
  height: 24px;
}

/* Content */
.site-content-wrapper .content-thumbnail {
  margin-top: 32px;
}

.site-header-wrapper + .site-content-wrapper .content-thumbnail {
  margin-top: 28px;
}

.content-thumbnail {
  height: auto;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.content-wrapper {
  color: #292929;
  margin: 32px 24px 0 24px;
}

.content-actions-wrapper {
  margin-top: 32px;
  text-align: center;
}

.btn-primary {
  background-color: #ffbc0d;
  border-radius: 4px;
  color: #292929;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px;
  min-width: 160px;
  box-sizing: border-box;
}

.qr-code-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-code-text {
  font-size: 10px;
  font-weight: 700;
  margin: 8px 0 0;
}

.btn-app {
  display: none;
}

/* Footer */
.site-footer-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}

.footer-thumbnail {
  height: 40px;
  width: 40px;
}

.footer-copyright {
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 0;
  color: #292929;
  opacity: 0.8;
}

/* Mobile styles */

body.mobile .btn-app {
  display: inline-block;
}
body.mobile .qr-code-wrapper {
  display: none;
}

@media screen and (max-width: 599px) {
  :root {
    --site-width-large: 100%;
    --site-inner-spacing: 24px;
  }

  /* Header */
  .header-thumbnail-wrapper {
    margin: 16px 0;
  }

  /* Content */
  .content-wrapper {
    margin: 24px 16px 0 16px;
  }

  .content-decription {
    margin-top: 16px;
  }

  /* Footer */
  .footer-thumbnail {
    height: 32px;
    width: 32px;
  }
}
