*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 62.5%; /* 10px/16px = 62.5% -> 1rem = 10px */
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html,
body {
  height: 100%;
  width: 100%;
}
body {
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 1.6rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #181717;
  text-align: left;
  background-color: #e7e2e2;
  text-rendering: optimizeLegibility;
}
.container {
  max-width: 100%;
  position: relative;
}
.container__inner {
  display: grid;
  justify-items: center;
  align-content: center;
  margin: 0 auto;
  max-width: 117rem;
  height: 100vh;
}
h2 {
  font-size: 4rem;
  font-weight:  700;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: -6rem;
}
p {
  text-align: center;
  font-size: 2.4rem;
}
a {
  color: #b11717;
  text-decoration: none;
}
img {
  width: 300px;
  height: 300px;
  margin-bottom: 0;
}