/* Styles for the full-screen background image, derived from your Canvas */
body {
    background-image: url('coming-soon-background.jpg');
    background-size: cover; 
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-size: 16px;

    /* Flexbox for centering the content box */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Styles for the content box */
.content-box {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(59.25px);
    margin: 2rem;
    padding: 6rem 3rem;
    max-width: 42.5rem;
    width: 100%;
    text-align: center;
}

h1 {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: clamp(2.4rem, 0.645rem + 1.783vw, 2.851rem);
  line-height: 130%;
  letter-spacing: 0.075rem;
  text-align: center;
  padding: 0 1rem;
}

strong {
  font-weight: 700;
}

img.logo {
  max-width: 100%;
  height: auto;
  margin-block-end: 2.3rem; 
}

p {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 2rem;
  text-align: center;
}

@media (max-width: 600px) {
    .content-box {
      margin: 1.5rem;
      padding: 4rem 1.5rem;
    }
}
