/* Begin: 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,
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,
menu,
nav,
output,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  color: #333333;
  font: inherit;
  font-size: 100%;
  font-family: "Open Sans", apple-system, blinkmacsystemfont, "Segoe UI",
    "Helvetica Neue", arial, sans-serif;
  margin: 0;
  padding: 0;
}

html, body {
    height: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
/* End: RESET */

/* Page */
.page_wrapper {
  display: flex;
  flex-flow: column;
  height: 100vh;
  width: 100vw;
}

/* Header */
.header_wrapper {
  align-items: center;
  background: #f0f0f0;
  border-bottom: #e0e0e0;
  display: flex;
  height: 3.5rem;
  padding: 0rem 1.4rem;
  width: 100%;
}

.logo_wrapper {
  align-items: center;
  background: #f0f0f0;
  border-bottom: #e0e0e0;
  display: flex;
  height: 2.8rem;
  font-size: 21.42px;
  gap: .59rem;
  padding: 0rem 1.4rem;
  width: 100%;
}

/* Body */
.body_wrapper {
  align-items: center;
  background: rgb(0, 94, 170);
  background: linear-gradient(
    180deg,
    rgba(0, 94, 170, 1) 0%,
    rgba(38, 65, 143, 1) 100%
  );
  display: flex;
  height:100%;
  justify-content: center;
  padding: 0 2rem;
}

.body-message {
  color: white;
  font-size: 60px;
  font-weight: 700;
  text-align:center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}