@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;0,900;1,400&display=swap');
body {
  background: url(./background.jpg) no-repeat center center fixed;;
  background-repeat: no-repeat;
  background-size:cover;
  position: static;
  font-family: 'Segoe UI', 'Geneva', Verdana, sans-serif;

}
@keyframes bg-animation {
0% {background-position: left}
50% {background-position: right}
100% {background-position: left}
   }
*{
   box-sizing: border-box;
   margin:0;
   padding:0;
}

.navbar{
  background-color: rgb(19, 18, 18);
  height: 100%;
  width: 0;
  word-wrap: break-word;
  transition: 0.2s;
  position: absolute;
  overflow-x: hidden;
  z-index: 1;
}
.navbar ul {
  text-align: left;
  width: 100%;
  min-width: 10.5rem ;
}
.links{
  color:white;
  font-size:1.20rem;
  list-style-type: none;
  padding: 20px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
}
.video-js{
  display: block;
  margin: 1em auto;
  width: 80%;
  height: calc(.5625 * 80vw)
}
.links2{
  color:white;
  font-size:1.20rem;
  list-style-type: none;
  padding: 20px;
  transition: 200ms ease-in;
  cursor: pointer;
  text-align: center;
}
.links2:hover{
  background-color: rgb(255, 0, 0);
}
.links:hover{
  background-color: gray;
}
.bar{
  width: 100%;
  background-color:white;
  height: 3px;
  border-radius: 10px;
}
.hamburger{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 1.25rem;
  position:absolute;
  left: 20px;
  width: 30px;
  height: 21px;
  cursor: pointer;
}
.top-nav{
  background-color: rgb(19, 18, 18);
  height:4.1rem;
}
a{
  color: white;
  text-decoration: none;
}
.container{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 100%;
height: 100%;
}
#streamtitle{
  color:white;
  font-size:1.2rem;
}
.now-playing{
  color:white;
  font-size:2rem;
}
.logo{
  width: 30%;
  height: auto;
  object-fit: cover;
}
.icons{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.fa-solid, fa-tv{
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  height: 100%;
  cursor: pointer;
  width: 100%;
  transition-duration: 0.6s;
}
.fa-solid:hover, fa-tv:hover{
  background-color: rgb(56, 56, 56);
}
.fa-solid img{
  width: 70px;
  height: auto;
}
.stats{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#listeners, #nowplaying{
  color: white;
  font-size: 1rem;
  font-weight: 500;
}
.bold{
  color: white;
  font-size: 1rem;
  font-weight: bold;
  margin-right: 5px;
}
.column{
  display: flex;
}
#cg{
  color: white;
  font-size: 1.5rem;
  width: 100%;
  background-color: #495057;
}
@media only screen and (max-width: 780px) {
  .logo{
      width: 50%;
  }
  .navbar{
      display:none;
  }
  .hamburger{
      display: none;
  }
  
  .top-nav {
  position: absolute;
  bottom: 0px;
  width: 100%;
  display: flex;
  flex-direction: row;
  }
}
@media only screen and (min-width: 780px) {
  .icons{
      display: none;
  }
}

/* Media query for responsiveness */
@media screen and (max-width: 768px) {
  .hamburger-menu {
      display: flex;
  }
  .nav-links {
      display: none; /* Hide links on smaller screens */
      flex-direction: column;
      position: absolute;
      background-color: #333;
      top: 60px;
      left: 0;
      width: 100%;
      text-align: center;
  }
  .nav-links.active {
      display: flex; /* Show links when the hamburger icon is clicked */
  }
}



