body {
  background-color: rgb(5, 25, 35); /* Sets the color to a darker blue */
}
.navbar {
  display: flex; /* Enables Flexbox */
  justify-content: space-between; /* Space between elements */
  align-items: center; /* Centers items vertically */
  background-color: #021412; /* Sets the navbar background color */
  padding: 10px 20px; /* Add padding for spacing */
  color: #ffffff; /* Text color */
}
.settings, .title, .profile {
  font-family: Arial, sans-serif; /* Choose a font */
  font-size: 18px; /* Adjust font size */
  color: #36593b;
}
.title {
  flex-grow: 1; /* Allows the title to take remaining space */
  text-align: center; /* Centers the title */
  font-style: bold; /* Sets the text to bold */
}
.video {
  width: 100%; /* Make players responsive */
  max-width: 800px; /* Set a max size */
  margin: 20px auto; /* Center align */
  margin-top: 35px; /* pushes down the video a bit */
  display: block;
}
.audio {
  width: 100%; /* Make players responsive */
  max-width: 500px; /* Set a max size */
  margin: 20px auto; /* Center align */
  margin-top: 45px; /* pushes down the audio a bit */
  display: block;
}
.footer {
  font-size: 5.5px;
  position: fixed;
  bottom: 1px;
  color: #ffffff;
}
.version {
  font-size: 11px;
  position: fixed;
  bottom: 8px;
  right: 7px;
  text-align: right;
  color: #ffffff;
}
.github {
  font-size: 11px;
  position: fixed;
  bottom: 5px;
  right: 7px;
  text-align: right;
  color: #ffffff;
}
.progress {
  font-size: 12px;
  position: fixed;
  bottom: 25px;
  right: 5px;
  text-align: right;
  color: #ffffff;
}
.updates {
  font-size: 13px;
  position: fixed;
  bottom: 42px;
  right: 5px;
  text-align: right;
  font-family: Times-New-Roman, Arial, sans-serif;
  color: #ffffff;
}
.shuffling {
  margin: 20px auto;
  margin-top: 120px;
  display: block;
  width: 100%;
  max-width: 175px;
  color: #ffffff;
}
.site_button{
  background-color: #04201D;
  display: inline-block;
  padding: 6px 11px;
  text-decoration: none;
  border-radius: 5px;
}
.modal{
  position: fixed;
  border: 2px solid black;
  border-radius: 10px;
  background-color: #021412;
  z-index: 10;
  width: 450px;
  max-width: 80%;
  padding: -0;
}
.modal::backdrop{
  background-color: rgba(0,0,0,0.7);
}
.modal-header{
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid black;
}
.modal-header .title{
  font-family: Arial, sans-serif; /* Choose a font */
  font-size: 1.5rem; /* Adjust font size */
  color: #36593b;
  flex-grow: 1; /* Allows the title to take remaining space */
  text-align: center; /* Centers the title */
  font-weight: bold;
}
.modal-header .close{
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-size: 1.5rem;
  font-weight: bold;
  color: darkgray;
}
.modal-body{
  font-size: 20px;
  padding: 10px 15px;
  color: #36593b;
}