@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700");
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 {
    border: 0;
    font: inherit;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
    vertical-align: middle;
}

q,
blockquote {
    quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
    content: "";
    content: none;
}

a img {
    border: none;
}

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

html,
body {
    font-family: "Open Sans", "Arial", sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscaled;
    font-weight: 400;
}

* {
    box-sizing: border-box;
}

p {
    line-height: 22px;
}

strong {
    font-weight: 600;
}

.clearfix {
    *zoom: 1;
}

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
    line-height: 0;
}

.clearfix::after {
    clear: both;
}

body {
    background-color: #000000;
}


/* General */

img {
    display: block;
    height: 100%;
    width: 100%;
}

section {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

section .container {
    margin: 0 auto;
    max-width: 800px;
    padding: 24px;
    width: 100%;
}

section .container .image {
    display: flex;
    justify-content: center;
    margin: 48px auto 0;
    width: 100%;
    max-width: 400px;
}


/* Text */

h1 {
    color: #ffffff;
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 140%;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
    letter-spacing: 0.65px;
    width: 100%;
}

h1 a {
    text-decoration: underline;
    color: #ffffff;
    transition: all 0.3s ease;
}

h1 a:hover {
    color: #cccccc;
}


/* Hannibal tag */

.hannibal-logo-color {
    fill: #ffffff;
}

.hannibal {
    position: absolute;
    bottom: 12px;
    margin-top: 30px;
    text-align: center;
    width: 100%;
    left: 0;
}

.hannibal__logo {
    display: inline-block;
    width: 100px;
}

.hannibal__link {
    outline: none;
    text-decoration: none;
}


/* Responsive */

@media only screen and (max-width: 800px) {
    section .container {
        padding: 24px 0 0;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    section .container .image {
        width: 100%;
        max-width: 420px;
    }
    h1 {
        font-size: 1.2rem;
        padding: 0 24px;
        text-align: center;
    }
}

@media only screen and (max-width: 340px) {
    h1 {
        font-size: 0.9rem;
        padding: 0 24px;
        text-align: center;
    }
}