body {
   margin: 0;
   padding: 0;
   background-color: black;
   background-repeat: no-repeat;
   background-position: center center;
   background-attachment: fixed;
   background-size: contain;
   height: 100vh;
   font-family: 'Grenze', serif;
   text-align: center;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   align-items: center;
}

.title-text {
   font-size: 3.3vw;
   color: white;
   background: rgba(0, 0, 0, 0.6);
   padding: 1.3%;
   border-radius: 5px;
   margin-top: 5%;
   margin-left: 2%;
}

.download-text {
   font-size: 1.1vw;
   color: white;
   background: rgba(0, 0, 0, 0.6);
   padding: 1.5% 3%;
   border-radius: 5px;
   margin-top: 5%;
   margin-left: 3.5%;
}

.download-text a {
   color: white;
   text-decoration: none;
   display: block;
   margin-top: 1%;
}

.bottom-text {
   font-size: 1vw;
   color: white;
   background: rgba(0, 0, 0, 0.6);
   padding: 1% 1%;
   border-radius: 5px;
   margin-top: 10%;
   margin-left: 4%;
}

.counter-text {
   font-size: 10px;
   color: white;
   background: rgba(0, 0, 0, 0.6);
   padding: 0.5% 0.5%;
   border-radius: 5px;
   margin-left: 5%;
   position: fixed;
   bottom: 0%;
   display: none; /* Hidden by default */
}

.download-text a:hover {
   text-decoration: underline;
}

@media (max-width: 767px) and (orientation: portrait) {
   .title-text {
      font-size: 8vw;
      margin-top: 50%;
   }

   .download-text {
      font-size: 4vw;
      margin-top: 10%;
   }

   .bottom-text {
      font-size: 3.5vw;
      margin-top: 15%;
   }

   .counter-text {
      font-size: 3vw;
      left: 75%;
      transform: translateX(-25%);
   }
}