/* error pages */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body,
html {
    height: 100%;
    padding: 20px;
}
html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.42857143;
    color: #696969;
    background-color: #fff;
    margin: 0;
}
h1, h2, h3, h4, h5 {
    line-height: 1.3em;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 0;
}
h4{
    font-size: 23px;
    line-height: 30px;
    font-weight: 300;
}
p {
    margin: 0 0 10px;
}
h1.blinking-cursor{
    padding-right: 12px;
    animation: type .5s alternate infinite;
}
.error-page h1{
    font-size: 60px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 20px;
    background-color: #666666;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: rgba(255, 255, 255, 0.5) 0px 3px 3px;
}
button{
    width: 200px;
    background: #eae9e9;
    margin-top:20px;
    box-shadow: 0 1px 3px 0 rgba(60, 64, 67, .3), 0 4px 8px 3px rgba(60, 64, 67, .15);
    border-radius: 4px;  
    outline: 0;
    height: 61px;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
    border-radius: 0;
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    position: relative;
    -webkit-transition: background-color .4s ease-in;
    transition: background-color .4s ease-in;
}
button:hover{
    background: #d7d7d7;
}
button:active{
    box-shadow: 0 1px 3px 0 rgba(60,64,67,.3),0 4px 4px 1px rgba(60,64,67,.15);
    box-shadow: 0 4px 8px #aaafb5;
    transition: transform .1s linear;
    transform: translateY(3px) 
}
@media (min-width:768px) {
    .error-page h1{
        font-size: 100px;
    }
}

@keyframes type{
    from{box-shadow: inset -3px 0px 0px #888;}
    to{box-shadow: inset -3px 0px 0px transparent;}
}