@font-face {
    font-family: 'American Typewriter';
    src: url('fonts/american-typewriter.woff') format('woff');
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'American Typewriter', serif;
}

#backgroundVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000;
  background: #000000;
}

/* Ensure other content is above the video */
.your-content-class {
  position: relative;
  z-index: 1;
}

video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

#background-video {
  object-fit: cover;
    position: fixed;
    right: 0;
    bottom: 0;
  width: 100vw;
  height: 100vh;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #A9AAA9;
    min-height: 500px;
}

#messages {
    font-size: 4vw;
    margin-bottom: 10vh;
}

/* #play-button { */
#playPauseButton {
    font-family: 'American Typewriter', serif;
    font-size: 2vw;
    padding: 10px 20px;
    background-color: rgba(169, 170, 169, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

#play-button:hover {
    background-color: rgba(169, 170, 169, 0.7);
}

.menu {
    position: fixed;
    top: 20px;
    left: 20px;
}

.menu-toggle {
    font-size: 24px;
    background: none;
    border: none;
    color: #A9AAA9;
    cursor: pointer;
}

.menu-options {
    display: none;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
}

.menu-options a {
    display: block;
    color: #A9AAA9;
    text-decoration: none;
    padding: 5px 0;
}

@media (max-width: 1024px) {
    #messages {
        font-size: 6vw;
    }

    #play-button {
        font-size: 4vw;
    }
}

@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

#messages::after {
    content: '|';
    animation: blink 0.7s infinite;
}

/* Optional: Adjust the width of the audio player to only show the timing */
#audioPlayer {
    width: 300px;
}

/* General styles for hiding unwanted controls on the audio element */
audio::-webkit-media-controls-enclosure {
    overflow: hidden; /* Hide additional controls */
}

audio::-webkit-media-controls-panel {
    display: none !important; /* Hide the entire panel */
}

audio::-webkit-media-controls-playback-rate,
audio::-webkit-media-controls-timeline,
audio::-webkit-media-controls-volume-slider,
audio::-webkit-media-controls-mute-button {
    display: none !important;
}

audio::-moz-media-controls-enclosure {
    overflow: hidden;
}

audio::-moz-media-controls-timeline,
audio::-moz-media-controls-volume-slider,
audio::-moz-media-controls-mute-button {
    display: none !important;
}

audio {
    display: none; /* Hide the audio player's default controls */
}

/* Style the custom Play/Pause button */
/* #playPauseButton {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
*/
