/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family:  Trebuchet MS;
}


.container {
  border: 2px inset #dedede;
  background-color: #f1f1f1;
  border-radius: 50px;
  width: 40%;
  padding: 50px;
  text-shadow: -1px 1px grey;
  margin: 10px 50px;
}

.containera {
  overflow: hidden;
}

.sliding-background {
  background: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQP3ccdNZVL3nm9Tn8ITSxvfmb-hiAvRa_nI2GnOCqCjDvyAzFaaFbpxIg&s=10") repeat-x;
  height: 5076px;
  width: 5076px;
  animation: slide 60s linear infinite;
}

@keyframes slide{
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-1692px, 0, 0);
  }
}

nav {
  float: right;
  width: 30%;
  background: #f1f1f1;
  padding: 20px;
  border-radius: 20px;
  border: 2px inset #dedede;
  margin: 0px 190px;
}