@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
/* @import url("//db.onlinewebfonts.com/c/4b76b99051d6848168d9f187b7eeb9c1?family=RosewoodW01-Regular"); */
* {
  font-family: "Roboto", sans-serif;
}
html {
  background-color: black;
}
.main {
  background-image: url("../images/Background.webp");
  background-size: cover;
  background-position: 68% center;
  height: 100vh;
  width: 100vh;
  padding-top: 50px;
}
.row {
  margin: 0 auto !important;
}
.navbar-brand, .slogan > h1{
  font-weight: bold;
}
.navbar-nav {
  text-align: center;
}
.slogan {
  text-align: center;
  margin-bottom: 100px;
}
.player {
  background-color: white;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 25px;
  padding: 20px;
}
#plyta {
  cursor: pointer;
  max-width: 100%;
  max-height: 100%;
}
.rotate {
  animation: spin 5s linear infinite;
}
.pulse {
  animation: pulse 1s linear infinite;
}
.radio-info {
  padding: 0 !important;
  white-space: nowrap;
  overflow: hidden !important;
}
.radio-info p {
  margin: 0;
}
#playing {
  animation: slide 20s linear infinite;
  max-width: 100% !important;
}
footer, footer a {
  text-align: center;
  color: rgba(255,255,255,.1);
  text-decoration: none !important;

}
@media only screen and (max-width: 959px) {
  .navbar-nav {
    background-color: rgba(4,17,24,.98);
  }
  .navbar {
    background-color: rgba(4,17,24,1);
  }
  .main {
    padding-top: 150px;
  }
  .slogan {
    margin-bottom: 35vh;
  }
}

@keyframes slide {
    0% {transform: translateX(100%);
        -webkit-transform: translateX(100%);}
      100% {transform: translateX(-100%);
          -webkit-transform: translateX(-200%);}
}
@-moz-keyframes spin { 
  100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
  100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
  100% { 
      -webkit-transform: rotate(360deg); 
      transform:rotate(360deg); 
  } 
}
@keyframes pulse { 
  0% { 
    transform: scale(1);
  } 
  100% { 
    transform: scale(1.1);
  } 
}


