/*

* Based on Cover by https://twitter.com/mdo"  @mdo
* added cover image and background color to match (green)
*
* Globals

*/

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-default,
.btn-default:hover,
.btn-default:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritence from `body` */
  background-color: #fff;
  border: 1px solid #fff;
}


/*
 * Base structure
 */

html,
body {
/*css for full size background image*/
  background: url(../images/blue-sky-flower.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  
  height: 100%;
  background-color: #6FA3D2;
  color: #fff;
  text-align: center;
  /*text-shadow: 0 1px 3px rgba(0,0,0,.5);*/
    font-family: "Fira Sans", sans-serif;
 
}

/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
  display: table;
  width: 100%;
  height: 100%; /* For at least Firefox */
  min-height: 100%;
  -webkit-box-shadow: inset 0 0 100px rgba(0,0,0,.5);
          box-shadow: inset 0 0 100px rgba(0,0,0,.5);
}
.site-wrapper-inner {
  display: table-cell;
  /*vertical-align: top;*/
}
.cover-container {
  margin-right: auto;
  margin-left: auto;
}

/* Padding for spacing */
.inner {
  padding: 30px;
}

.logoSection {
    padding-top: 70px;
}
.upLogo {
    font-size: 60px;
    color: rgba(255,255,255,.8);
    margin-bottom: 0;
}

.tagcopy {
    color: rgba(255,255,255,.5);
    margin-top: -20px;
    font-size: 13px;
}

.gray {
      color: rgba(255,255,255,.5);
}


/*
 * Cover
 */

.cover {
  padding: 0 20px;
}
.cover .btn-lg {
  padding: 10px 20px;
  font-weight: bold;
}


/*
 * Footer
 */

.mastfoot {
  color: #999; /* IE8 proofing */
  color: rgba(255,255,255,.5);
    position: fixed;
    bottom: 0;
    right: 30px;
    text-align: right;
    width: 95%;
    font-size: 11px;
}

.tempNav {
    color: #999;
    color: rgba(255,255,255,.5);
    position: fixed;
    top: 20px;
    right: 30px;
    text-align: right;
    width: 95%;
    font-size: 14px;
}

.linkButton {

    color: #999;
    color: rgba(255,255,255,.5);
    padding: 5px 10px;
    text-decoration: none;
}

.linkButton:hover {
    
    color: #999;
    color: rgba(255,255,255,.8);
}

a.linkButton {
    text-decoration: none;
}

.aboutUp {

    position: fixed;
    background-color: #6FA3D2;
    padding: 20px;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    padding: 5%;
    line-height: 1.6em;

}

.circleUp {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    color: #6FA3D2;
    font-size: 48px;
    line-height: 100px;
    margin: 0 auto 20px;
}

.closeButton {
    display: block;
    width: 60px;
    margin: 10px auto;
    border: 1px solid white;
    padding: 5px 10px;
}

.allowScroll {
    height: 100%;
    overflow: auto;
    padding: 0 20px;
}

/*
 * Affix and center
 */

@media (min-width: 768px) {

  /* Start the vertical centering */
  .site-wrapper-inner {
    /*vertical-align: middle;*/
  }
  /* Handle the widths */
  .cover-container {
    width: 100%; /* Must be percentage or pixels for horizontal alignment */
  }

    .logoSection {
        padding-top: 150px;
    }
    .upLogo {
        font-size: 84px;
        color: rgba(255,255,255,.8);
    }

    .gray {
          color: rgba(255,255,255,.5);
    }
    .aboutUp {

        padding: 5% 15%;

    }
}

@media (min-width: 992px) {

  .cover-container {
    width: 700px;
  }
    .aboutUp {

        padding: 5% 30%;

    }
}

