html {
  box-sizing: border-box;
}

*,
:after,
:before {
  box-sizing: inherit;
}

body {
  background: #1c2b20;
}

html,
body,
main {
  margin: 0px;
  padding: 0px;
  height: 100%;
  width: 100%;
}

main {
  background-image: url("/background.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;
}

main .text {
  font-family: "Open Sans", sans-serif;
  letter-spacing: -0.1rem;
  line-height: 1.2;
  text-shadow: 0 1px 1px #1c2b20;
  color: white;
  font-size: 50px;
  font-weight: 900;
  padding: 20px;
}
