@font-face {
    font-family: 'Prisma';
    src: url('fonts/Prisma.ttf.woff') format('woff'),
         url('fonts/Prisma.ttf.svg#Prisma') format('svg'),
         url('fonts/Prisma.ttf.eot'),
         url('fonts/Prisma.ttf.eot?#iefix') format('embedded-opentype'); 
    font-weight: normal;
    font-style: normal;
}

html, body {
    height: 100%;
}

body {
    background: #aaa;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
}

h1 {
    font-family: 'Prisma';
    font-size: 3em;
    line-height: 1em;
}

h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3em;
    line-height: 1.2em;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    line-height: 1.4em;
}

footer p {
    font-size: .7em;
    color: #999;
    line-height: 1.2em;
}

a.link, a.link:visited {
    background: #0d5dc9;
    color: #fff;
    padding: 10px;
    text-decoration: none;
    transition: all .3s ease;
}

a.link:hover, a.link:active {
    color: #ccc;
}

strong {
    font-weight: 700;
}

main {
    z-index: 1;
}

#l1, #l2 {
    background-size: 200%;
    background-position: 0 50%;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    pointer-events: none;
    z-index: -1;
}
    
#l1 {
    background: repeating-linear-gradient(90deg, rgba(236, 240, 241,.0), rgba(236, 240, 241,.6), rgba(236, 240, 241,.0));
    animation: l1 25s linear infinite alternate;
}
  
#l2 {
    background: repeating-linear-gradient(90deg, rgba(236, 240, 241,.0), rgba(236, 240, 241,.6), rgba(236, 240, 241,.0));
    animation: l2 35s linear infinite alternate;
}
  
@keyframes l1 {
    0% { background-position: 1000px 0; }
    50% { background-position: 500px 0; }
    100% { background-position: 0 0; }
}

@keyframes l2 { 
    0% { background-position: 0 0%; }
    50% { background-position: 500px 0%; }
    100% { background-position: 1000px 0; }
}

@media screen and (max-width: 667px) {
    h1 {
        font-size: 2.4em;
    }
    
    h2 {
        font-size: 1.2em;
    }
}