body{
  margin: 8px;
  background-image: url('/graphics/backgrounds/meta1.PNG');
  background-size: contain;
  font-weight: bold;
  animation:bg-scroll 240s infinite linear;
}
#main{
  background-color:rgba(255,255,255,.5);
  color:black;
}
.navbar{
  margin-top:5vw;
}
.navbar a{
  background-color: rgb(150,150,150);
  color:red;
}
#bios{
  display:flex;
}
#bios div{
  width:50%;
  padding:1%;
}
@keyframes bg-scroll {
    0%{ background-position: 0 100%; }
    100%{ background-position: calc(1350px * 1.5) 100%; }
}