/* 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: url("glabbg.png") repeat-x;
  background-repeat: repeat;
  background-attachment: fixed;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
}

button {
  position: relative;
  left: 3px;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  color: white;
  background-color: brown;
  
  }

h1 {
  color: blue;
  text-align: center;
  animation: slide 0.04s linear infinite;
  }
  
.boxmaker {
    width: 300px;
    height: 435px;
    float: right;
    background-color: brown;
  }  
  
.boxtext {
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  position: relative;
  left: 3px;
  }

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0px, -5, 0); /* The image width */
  }
  100% {
    transform: translate3d(-5px, 0, 0); /* The image width */
  }
}

.glabhead {
  position: relative;
  left: 140px;
  bottom: 210px;
  
  }
  
  .glabtorso {
    position: relative;
    right: 490px;
  bottom: 120px;
    }
    .glabhat {
       position: relative;
      left: 230px;
      
      }