* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body, html {
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
  }

  .coming-soon-container {
    background: url('../images/commingsoon.jpg') no-repeat center center/cover;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  /* Optional overlay text */
  .text-overlay {
    position: absolute;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.7);
    text-align: center;
  }

  @media (max-width: 768px) {
    .text-overlay {
      font-size: 2rem;
    }
  }

  @media (max-width: 480px) {
    .text-overlay {
      font-size: 1.5rem;
    }
  }