body {
  background-image: url(communitybuildingroom.png);
  margin: 0px;
  font-family: 'Source Sans Pro',Arial,Helvetica,sans-serif;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.container {
  width: 1000px;
  height: 100%;
  background-color: white;
  overflow: auto;
  border: 2px solid gray;
  padding: 5px;
  display: auto;
  background-attachment: scroll;
}

.spawn {
  float: right;
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; 
}

.builderman {
  z-index:1;
  position: absolute;
  left: 460px;
  top: 5px;
  margin:	0% 0% 0% 0%;
  padding: 0px;
}

.roblos {
  z-index:2;
  position: relative;
  top: -10px;
}

.flunk {
  background-color: #7398c9;
  margin-top:	-4.50%;
  padding: 0;
  color: white;
  font-family: 'Arial', cursive;
}

.divider-right {
  border-right: 1px solid #ccc;
}

.divider-left {
  border-left: 1px solid #ccc;
}

.divider-bottom {
  border-bottom: 1px solid #ccc;
}

.h2.title {
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.3em;
  font-size: 30px;
  font-weight: normal;
  color: #343434;
  letter-spacing: -1px;
  text-decoration: none;
  display: inline-block;
  margin: 0;
  padding: 0
}

.UserController {
  width: 450px;
  margin: auto;
  text-align: center;
}

.thumbnail-holder {
  margin: 0 auto;
  position: relative;
}

.badges {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  overflow-x: hidden;
  white-space: nowrap;
  text-align: left;
}


@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}