body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    width: 100%;
  background-image: url(bea.jpg);
 background-repeat: no-repeat; 
background-attachment: fixed;
background-position: center; 
background-size: cover; 
}

.continent{
  display:flex;
  flex-direction:row;
  justify-content:space-between;
}

.buttons{
  padding:10px;
  justify-content:right;
  display:inline-block;
}

li{list-style:none;}

.radio{
  justify-content:right;
  display:flex;
}

.chat{
  margin:100px;
 
}

button{
  margin-top:10px;
}


#scroll-container {
  border: 1px solid black;
  border-radius: 2px;
  overflow: hidden;
  height:20px;
  flex-direction:row;
}

#scroll-text {
  text-align: right;

  /* animation properties */
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  
  -moz-animation: my-animation 30s linear infinite;
  -webkit-animation: my-animation 35s linear infinite;
  animation: my-animation 30s linear infinite;
}

/* for Firefox */
@-moz-keyframes my-animation {
  from { -moz-transform: translateX(-100%); }
  to { -moz-transform: translateX(100%); }
}

/* for Chrome */
@-webkit-keyframes my-animation {
  from { -webkit-transform: translateX(-100%); }
  to { -webkit-transform: translateX(100%); }
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}  
.hidden {
  display: none;
}