@font-face {
  font-family: 'Nunito-Sans';
  src: url('../content/NunitoSans.ttf') format('truetype');
  font-weight: 700;
  font-style: bold;
}

@font-face {
  font-family: 'Lora';
  src: url('../content/Lora-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
    :root {
      --clay:    #C6803D;
      --sage:    #BAAF69;
      --dusk:    #68672B;
      --linen:   #F7F1E4;
      --warm:    #F4C5B4;
      --mist:    #9BB6DC;
      --bark:    #68672B;
      --sky:     #98B6dC;
      --blush:   #F4C5B4;
      --blue:    #5985C4;
      --olive:   #68672B;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--linen);
      font-family: 'Lora';
      font-size: 18px;
      line-height: 1.7;
      overflow-x: hidden;
    }

   .coming_outer {
  width: 100%;               /* adjust as needed */
  padding: 20px;              /* space around inner section */
  background-color: var(--sky);  
  border-radius: 25px;        /* rounded outer section */
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming_inner {
  width: 100%;
  height: 250px;              /* adjust height as needed */
  background-image: url('Pattern_Linen.png');
  background-size: cover;
  background-position: center;
  border-radius: 20px;        /* rounded inner section */
  display: flex;              /* centers text */
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  text-align: center;
}
.coming-label {
    color: var(--olive);
    font-size: 32px;
}
.coming-title {
    color: var(--olive);
    font-size: 32px;
}
.check {
    color: var(--olive);
    font-size: 32px;
}


