body {
  font-family: 'Orbitron', serif;
  color: yellow;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center; /* Horizontally centers the content */
  align-items: center; /* Vertically centers the content */
  min-height: 100vh;
  background-image: url(toxicback.jpg);
  background-size: cover; /* Keeps the original size of the background image */
  background-repeat: repeat; /* Makes the background image repeat */
  background-position: top left; /* Aligns the background image to the top left */
  transition: background-color 0.5s ease, background-image 0.5s ease;
}

@font-face {
  font-family: 'Toxicator'; /* Name your font family */
  src: url('toxicator.ttf'); /* Locate the .ttf file within your directory */
}

.letter-box {
  background-color: rgba(0, 0, 0, 0.7); /* Slightly transparent black */
  border: 2px solid #31ff03;
  border-radius: 8px;
  padding: 20px;
  width: 80%;
  max-width: 800px;
  text-align: center;
  color: #31ff03;
  font-family: 'Toxicator', serif;
  position: relative; 
  z-index: 1; 
  display: flex;
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
}

.video-container {
  width: 100%; /* Match the width of the letter-box */
  flex-grow: 1; /* Expand to fill available space */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Ensures no extra spacing */
}

.video-container video {
  width: 100%; /* Make the video fit horizontally */
  height: 100%; /* Stretch to fill container */
  object-fit: cover; /* Keeps the video covering the space properly */
}

.toxic-divider-1 {
  width: 100%; /* Stretch the divider across the container */
  display: block;
  margin: 1px 0; /* Adjust the margin as needed */
}

.toxic-divider-1-part-2 {
  width: 100%;
  display: block;
  margin: 1px 0;
}

.gif-container {
  display: flex;
  gap: 10px; /* Adjust spacing between the gifs */
}

.audio-player-container {
  background-color: black;
  border: 2px solid #31ff03;
  padding: 10px;
  text-align: center;
  width: 300px; /* Adjust as needed */
  margin: 20px auto 0; /* Centers it at the bottom */
  border-radius: 8px;
}

audio {
  width: 100%;
}
