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

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

/*
Reset
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
button, input, textarea {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
*, *:before, *:after {
    box-sizing: border-box;
}

button, input[type=button] {
    border: none;
}

img {
    max-width: 100%;
    height: auto;
}

svg {
    max-width: 100%;
    height: auto;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inovato', sans-serif;
    color: #efefef;
    text-align: center;

    padding: 1rem;
    background: #3a3a3a;
}

.page {
    min-height: 100%;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;

      -webkit-box-pack: center;
         -ms-flex-pack: center;
       justify-content: center;

     -webkit-box-align: center;
        -ms-flex-align: center;
           align-items: center;   
}

a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
}

.header {
    margin: auto;
    padding: 4rem 1rem;
}
    #logo {
        margin-bottom: 3rem;
    }
    .info {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

        .register {
            display: inline-block;
            margin: 1rem auto;
            padding: 1rem 1.5rem;
            border: 1px solid #fff;
        }
            .register:focus,
            .register:hover,
            .register:active {
                color: #3a3a3a;
                background: #efefef;
            }
            @media screen and (max-width: 768px) {
                .register {
                    display: block;
                    margin: 1rem 0 0;
                }
            }

.footer {
    width: 100%;
    margin-top: auto;    
}
    @media screen and (max-width: 500px) {
        .footer {
            overflow-x: scroll;
        }
    }

    .years {    
        display: table;
        width: 100%;
    }
        .years li {
            display: table-cell;
            width: 10%;
            -webkit-transform: rotate(-15deg);
                    transform: rotate(-15deg);
        }
        .years a {
            color: #7a7a7a;
            display: block;
            padding: 1rem 1rem;
            border: none;
        }
        .years a:hover,
        .years a:focus,
        .years a:active {
            color: #aaa;
        }