    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      height: 100%;
      font-family: "Lato", sans-serif;
    }

    .background {
      position: relative;
      width: 100%;
      height: 100%;
      background: url("../images/background.png") no-repeat center center/cover;
    }

    .lato-light {
      font-family: "Lato", sans-serif;
      font-weight: 300;
      font-style: normal;
    }

    .lato-regular {
      font-family: "Lato", sans-serif;
      font-weight: 400;
      font-style: normal;
    }

    .lato-bold {
      font-family: "Lato", sans-serif;
      font-weight: 700;
      font-style: normal;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.452);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding: 20px;
    }

    .logo {
      font-weight: bold;
      font-size: 1.2rem;
      margin-bottom: 60px;
    }

    h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      font-weight: 600;
    }

    #countdown {
      font-size: 1.5rem;
      margin-bottom: 30px;
    }

    #countdown span {
      font-weight: bold;
      margin: 0 5px;
    }

    .description {
      max-width: 600px;
      font-size: 0.95rem;
      line-height: 1.5;
      color: #ccc;
      margin-bottom: 60px;
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 2rem;
      }
      #countdown {
        font-size: 1.2rem;
      }
    }