/* 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;
    outline: none;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background-color: white;
    font-family: 'Open Sans', sans-serif;
}

.header-wrapper {
    background-color: #2F6FB9;
    width: 100%;
}

.inner-wrapper {
    max-width: 767px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.inner-wrapper h3 {
    font-size: 140px;
    font-weight: 600;
    color: white;
}

.message-wrapper span {
    display: block;
    width: 100%;
}

.large-message {
    font-size: 30px;
    color: #17A7E1;
    margin-bottom: 10px;
}

.small-message {
    font-size: 24px;
    color: #2F6FB9;
}

.message-wrapper a {
    display: inline-block;
    padding: 15px 30px;
    font-size: 24px;
    margin-top: 60px;
    background-color: #17A7E1;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    border-radius: 12px;
}


/* dialog */


/* The Modal (background) */

.dialog-404 {
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
}


/* Modal Content/Box */

.dialog-content {
    background-color: #fefefe;
    margin: 5% auto;
    /* 15% from the top and centered */
    max-width: 600px;
    /* Could be more or less, depending on screen size */
}

.dialog-content .message-wrapper {
    background-color: #F8F8F8;
}

.dialog-content .inner-wrapper {
    padding: 50px 0;
}

.dialog-large-message,
.dialog-small-message {
    color: #2F6FB9;
}

.dialog-large-message {
    font-size: 30px;
    margin-bottom: 10px;
}

.dialog-small-message {
    font-size: 24px;
}


/* The Close Button */

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}