/* 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-image: url(background-gifs/aquagalaxy_small.gif);
  background-attachment:fixed;
  color: white;
  font-family: Verdana;
}
.text-box, .photocard, .topnav, img {
  max-width: 800px;
  margin: 20px auto;
  height: auto;
  padding: 20px;  
  background-color: rgba(0, 0, 0, 0.8);
  display:block;
}
.updates {
  max-width: 800px;
  margin: 20px auto;
  padding:20px;
  background:rgba(0, 0, 0, 0.8);
}
.updates h5 {
  margin-top: 0;
}
.updates-list {
  max-height:100px;
  overflow-y:auto;
}

/* Styling for the embedded chat iframe */
#chattable {
  /* Step 1: Set the width to match your other boxes */
  width: 800px; /* **Change this 600px to whatever width your other boxes use!** */
  
  /* Step 2: Center the element on the page */
  margin-left: auto;
  margin-right: auto;

  /* This is just a safety measure to make sure it acts like a box */
  display: block; 
}