* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: url("../img/brackets-coming-soon.jpg") no-repeat center center fixed;
      background-size: cover;
      height: 100vh;
      font-family: Arial, sans-serif;
      color: white;
      position: relative;
      overflow: hidden;
    }

    h1 {
      font-size: 3em;
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
      position: absolute;
      top: 20%; /* adjust this if needed */
      left: 50%;
      transform: translate(-50%, -50%);
    }

    p {
      position: absolute;
      bottom: 50px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 1.5em;
      text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
    }