* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  background-color: #1c1c1c;
  color: #ebe6e0;
}

main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

a, a:focus {
  outline: none;
  text-decoration: none;
}

img {
  width: 100px;
}