/* =========================================================
   SilverSaturn Minecraft Hub CSS
   Made to be easy to edit in Dreamweaver CS3.

   Main things to edit:
   - Page title and links: index.html
   - Background image: images/minecraft-background.png
   - Main colors: below in body, #hub-box, and .hub-button
   ========================================================= */

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  color: #ffffff;
  background-color: #67b94b;
  background-image: url('../images/minecraft-background.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;

  /* Modern browser background fill. Dreamweaver CS3 can still edit this line in Code View. */
  background-size: cover;
}

#page {
  width: 100%;
  min-height: 100%;
  padding-top: 95px;
  padding-bottom: 60px;
}

#hub-box {
  width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 36px 28px 36px;
  text-align: center;
  background-image: url('../images/panel-bg.png');
  background-repeat: repeat;
  border: 4px solid #2b5b1f;
  outline: 2px solid #d8ff9b;
}

h1 {
  margin: 0 0 12px 0;
  padding: 0;
  font-size: 38px;
  line-height: 44px;
  color: #fff8b5;
  letter-spacing: 1px;
  text-shadow: 3px 3px 0 #173214;
}

.intro {
  margin: 0 0 26px 0;
  font-size: 17px;
  line-height: 24px;
  color: #f4ffe7;
  text-shadow: 2px 2px 0 #173214;
}

.button-area {
  width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hub-button {
  display: block;
  margin-bottom: 18px;
  padding: 16px 20px 15px 20px;
  color: #ffffff;
  text-decoration: none;
  background-color: #3b8526;
  background-image: url('../images/button-green.png');
  background-repeat: repeat;
  border-top: 3px solid #b9ff72;
  border-left: 3px solid #b9ff72;
  border-right: 3px solid #173214;
  border-bottom: 3px solid #173214;
}

.hub-button:hover,
.hub-button:focus {
  color: #fff8b5;
  background-color: #4f9d2c;
  background-image: url('../images/button-green-hover.png');
  background-repeat: repeat;
}

.button-title {
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0 #173214;
}

.button-subtitle {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 18px;
  color: #e6ffd6;
}

.footer-note {
  margin: 22px 0 0 0;
  font-size: 12px;
  color: #d8ff9b;
  text-shadow: 1px 1px 0 #173214;
}

/* Smaller screen fallback */
@media screen and (max-width: 820px) {
  #page {
    padding-top: 40px;
  }

  #hub-box {
    width: 82%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .button-area {
    width: 100%;
  }

  h1 {
    font-size: 30px;
    line-height: 36px;
  }
}
