html {
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 35px;
    margin: 0 auto;
    padding: 2em 2em 4em;
    text-align: center;
    background: #fafafa;
    position: relative;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    margin-top: 0px;
    color: #838383;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 4px;
}

h2:hover {
    cursor: pointer;
    color: #43aaf8;
}

.content {
  max-width: 990px;
  width: 95%;
  margin: 0 auto;
  text-align: center;
  margin-top: 80px;
}

.content a {
    color: #0083e8;
    text-decoration: none;
    display: inline-block;

}

.content img {
  margin-top: 30px;
}

h5 {
    font-weight: 400;
    color: #5a5a5a;
    font-size: 17px;
    text-align: center;
    display: block;
    width: 100%;
}

samp {
    display: none;
}

img {
    position: relative;
    height: 120px;
/*    filter: invert(100%);*/
    margin: 25px;
}

img:hover {
    cursor: pointer;
    filter: invert(20%);
}

@-webkit-keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
    }
}

@keyframes colorize {
    0% {
        filter: grayscale(100%);
    }
    100% {
        filter: grayscale(0%);
    }
}
