@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,300italic,400,700,900");


/* 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 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

/* Box Model */
*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Basic */
body, input, select, textarea {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    font-weight: 100 !important;
}

body {
    background: #fff;
    overflow: hidden;
}

.visuallyhidden { 
    position: absolute; 
    overflow: hidden; 
    clip: rect(0 0 0 0); 
    height: 1px; width: 1px; 
    margin: -1px; padding: 0; border: 0; 
}

/* Wrapper */
@keyframes wrapper {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

#wrapper {
    animation: wrapper 1s forwards;
    opacity: 0;
    background-color: #f57c00;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Header */
#header {
    animation: fromup 1s both;
    margin: auto;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 30%;
}

#header h1 {
    font-size: 6em;
    font-weight: 100;
    line-height: 1em;
}

/* Slant cut */
@keyframes slantcutmove {
    0% { top: 0; }
    100% { top: -50%; }
}

#slantcut {
    animation: slantcutmove 1s forwards;
    background-color: #ff9800;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 100%;
    text-align: center;
    border-bottom-style: solid;
    border-bottom-color: #ffa726;
    border-bottom-width: 0.5px;
    border-top-style: solid;
    border-top-color: #ffa726;
    border-top-width: 0.5px;
    transform: skewY(5deg);
}

/* Move */
@keyframes fromup {
    0% { transform: translate3d(0,-10em,0); opacity: 0; }
    100% { transform: translate3d(0,0,0); opacity: 1; }
}

.fromup {
    animation: fromup 1s forwards;
    transform: translate3d(0,0,0);
    opacity: 0;
}

@keyframes todown {
    0% { transform: translate3d(0,0,0); opacity: 1; }
    100% { transform: translate3d(0,10em,0); opacity: 0; }
}

@keyframes fromdown {
    0% { transform: translate3d(0,10em,0); opacity: 0; }
    100% { transform: translate3d(0,0,0); opacity: 1; }
}

.fromdown {
    animation: fromdown 1s forwards;
    transform: translate3d(0,0,0);
    opacity: 0;
}

/* Mobile */
@media screen and (max-width: 768px) {
    body, input, select, textarea {
        font-size: 0.5em;
    }
}
