/* style.css */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #000000;
    flex-direction: column;
}

.container {
    width: 80%;
    max-width: 600px;
    text-align: center;
}

.progress-bar-background {
    width: 100%;
    height: 30px;
    background-color: #ddd;
    border-radius: 15px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: #991628;
    border-radius: 15px;
    text-align: center;
    color: white;
    line-height: 30px;
    font-weight: bold;
    transition: width 0.2s ease-in-out;
}

.loading-text, .click-message, .end-text {
    margin-top: 20px;
    font-size: 18px;
    color: #ddd;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff00, 0 0 15px #ffffff00, 0 0 20px #ffffff;
}
         
.carre {
    color: #ffffff;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #ffffff, 0 0 20px #ffffff00;
}

.letter {
    width: 5px;
    height: 2px;
    border-radius: 50%;
    margin-top: 5px;
  }

.click-message {
    color: #ff0000;
    text-shadow: 0 0 5px #000000, 0 0 10px #fd0404, 0 0 15px #000000, 0 0 20px #ff0000;
    
}

.end-text {
    color: #e91e63;
    font-size: 22px;
    font-weight: bold;
}

#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100vw;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
  pointer-events: none; /* Impede que o vídeo bloqueie cliques no conteúdo */
}

/* Certifica que o conteúdo do site fique sobre o vídeo */
body * {
  position: relative;
  z-index: 1;
}