html, body {
  height: 100%;
  width: 100%;
  margin: 0;
}

::-moz-selection {
  background: darkgray;
}

::selection {
  background: darkgray;
}

body {
  background: url(../bg.PNG) no-repeat center center fixed;
  background-size: cover;
  font-size: 20px;
}

.content {
  background: rgba(255, 255, 255, 0.4);
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  position: relative;
  padding-bottom: 10px;
}
.content-inner {
  display: table-cell;
  vertical-align: middle;
}

.logo {
  background: url(../logo.png);
  background-size: 400px 200px;
  width: 400px;
  height: 200px;
  margin: auto;
}

h1, h2 {
  font-family: "Ubuntu", sans-serif;
}

h1 {
  margin-top: 0;
  font-size: 4em;
}

h2 {
  font-size: 2em;
}

.text {
  font-size: 1em;
  max-width: 700px;
  margin: 40px auto;
  font-family: "Ubuntu", sans-serif;
}

.social-link {
  margin: 0 20px;
  color: transparent;
}
.social-link > img {
  filter: saturate(0.2);
  transition: 600ms ease;
  padding: 20px;
  font-size: 30px;
  width: 100px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}
.social-link:hover > img {
  filter: saturate(1);
}

.author {
  font-family: "Ubuntu", sans-serif;
  display: table-row;
  font-size: .6em;
  text-decoration: none;
  color: black;
  height: 30px;
  bottom: 0;
}
.author p, .author img {
  display: inline-block;
  vertical-align: middle;
}

.badge {
  background: rgba(225, 225, 225, 0.6);
  color: black;
  text-decoration: none;
  padding: 7px;
  position: relative;
}
.badge-text {
  font-family: 'Abel', sans-serif;
  color: #7f8183;
  display: inline-block;
  font-size: 13px;
}

@media only screen and (max-width: 768px) {
  .text {
    margin: 40px 20px;
    font-size: 1.2em;
  }
}
/* UNUSED MEDIA QUERIES
  // Large Devices, Wide Screens 
    @media only screen and (max-width : 1200px) {

    }

    // Medium Devices, Desktops 
    @media only screen and (max-width : 992px) {

    }

    

    // Extra Small Devices, Phones 
    @media only screen and (max-width : 480px) {

    }

    // Custom, iPhone Retina 
    @media only screen and (max-width : 320px) {
        
    }
*/
