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;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 2rem;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "roboto", sans-serif;
  display: flex;
  flex-flow: column nowrap;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  padding: 15px;
  max-width: 500px;
}

.centered {
  margin-top: 20px;
}

h1 {
  font-size: 42px;
}

p {
  font-size: 24px;
  margin: 50px 0;
}

img {
  height: 300px;
  width: 300px;
}

i {
  margin: 20px;
  font-size: 50px;
  color: #0099ff;
}

.button {
  font-size: 24px;
  width: 200px;
  height: 50px;
  font-weight: 400;
  color: #ffffff;
  background-color: #0099ff;
  padding: 10px;
  border: none;
  border-radius: 10px;
  overflow: visible;
  box-shadow: 0px 3px 13px 0px rgba(0, 0, 0, 0.2);
}

.button:hover {
  background-color: #0073c0;
  cursor: pointer;
}

.button:active {
  background-color: #00568f;
}

footer {
  font-weight: 600;
  color: rgb(88, 88, 88);
  position: fixed;
  bottom: 5px;
}
