/*
 * Globals
 */
*{
  outline:none;
  padding:0;
  margin:0;
}
/* 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 {
  height: 100%;
  background-color: #fff;
  margin:0;
  padding:0;
}
body {
  color: #eee;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  font-family: 'Roboto', sans-serif;
}
div{
  box-sizing: border-box;
  display: block;
}
/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper { 
  display:  flex;
  justify-content:  center;
  align-items:  center;
  width: 100%;
  height: 100%; /* For at least Firefox */
  min-height: 100%;
  background: url('../img/bghome.jpg') 100% 100% no-repeat #323232;
  background-size: cover;
  margin:  0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.icon-img{
  display:  block;
  margin:  0 auto;
  text-align: center;
  width:  200px;
  height: 200px;
}
.icon-img img{
  width:  100%;
  height:  auto;
}
.icon-txt{
  margin-top:  20px;
  padding:  0 5px;
  font-size:  24px;
}
.fix-footer{
  position: absolute;
  bottom: 0;
  color:  #666;
  font-size: 14px;
  font-family: Verdana;
  font-weight: bold;
  padding: 20px;
  width:  100%;
}
.copyright{
  position: relative;
  text-align: center;
  width:  100%;
}
@media all and (max-width: 480px){
  .icon-img{
    width:  160px;
    height: 160px;
  }
  .icon-txt{
    font-size: 18px;
  }
}