/* Define the typewriter animation */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

/* Apply typewriter animation to the .typewriter class */
.typewriter {
    overflow: hidden; /* Hide overflow to create the typewriter effect */
    border-right: 1px solid rgb(255, 21, 21); /* Cursor effect */
    white-space: nowrap; /* Prevent text from wrapping */
    animation: typing 3s steps(40, end), /* Adjust the duration as needed */
               blink-caret 0.75s step-end infinite; /* Cursor blinking effect */
}

/* Define the cursor blinking animation */
@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: white; }
}

/* Add glow effect with text-shadow */
.container-header-name-discord {
    color: rgb(255, 0, 0);
    text-shadow: 0 0 10px white, /* Adjust the glow effect */
                 0 0 20px white,
                 0 0 30px white,
                 0 0 40px white,
                 0 0 50px white,
                 0 0 60px white,
                 0 0 70px white;
}

#playButton {
    position: fixed;
    bottom: 20px; /* Adjust the distance from the bottom */
    left: 50%; /* Position at the horizontal center */
    transform: translateX(-50%); /* Center horizontally */
    z-index: 1001; /* Ensure it's above the overlay */
}



.volume-control {
    position: absolute; /* Position the volume control absolutely */
    top: 50%; /* Place it at 50% from the top */
    transform: translateY(-50%); /* Center it vertically */
    margin-right: 20px; /* Add some right margin */
    right: 1%;
}

/* Include Font Awesome CSS */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Style for the view count container */
/* Style for the view count container */
.view-count {
    position: fixed;
    top: 10px; /* Adjust top position as needed */
    left: 10px; /* Adjust left position as needed */
    font-size: 18px;
    color: #ff0000;
  }
  
  /* Style for the eye icon */
  .view-count .fas.fa-eye fa {
    margin-right: 5px;
  }
  
  /* Style for the count number */
  .view-count .count {
    font-weight: bold;
  }
  


