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;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: whitesmoke;
}
html {
  height: 100%;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

body {
  height: 100%;
}

img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-image: url("image.webp");
  background-size: cover;
}

.wrapper::after {
  content: "";
  position: absolute;
  width: 100%; height:100%;
  top:0;
  left:0;
  background:rgb(10, 34, 13);
  opacity: 0.9;
  z-index: 1;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin: 2rem 1rem 1rem 1rem;
  text-wrap: nowrap;
}

p {
  max-width: 570px;
  letter-spacing: 0.1rem;
  font-size: 1rem;
  font-weight: lighter;
  margin-bottom: 4rem;
  color: whitesmoke;
  line-height: 3rem;
  letter-spacing: 0.2rem;
  text-align: center;
  padding: 1rem;
}

.button {
  background-color: #C1840B;
  border-radius: 6px;
  border: 0;
  color: whitesmoke !important;
  cursor: pointer;
  display: inline-block;
  height: 2.75em;
  line-height: 2.75em;
  padding: 0 1em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
  font-size: 1rem;
}

@media screen and (max-device-width: 520px) {

  h1 {
    font-size: 2rem;
  }
}