html, body {
  margin: 0;
  padding: 0;
  background-color: #333333;
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

main {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

main, footer {
  flex-shrink: 0;
}

img {
  width: 200px;
  padding: 20px 40px;
}

a {
  text-decoration: none;
  color: #eebc66;
}

a:visited, a:hover, a:link, a:active, a:focus {
  color: #eebc66;
}

.text {
  padding: 30px;
  max-width: 550px;
}

.text-center {
  line-height: 30px;
  text-align: center;
}

footer {
  display: flex;
  padding: 25px;
  font-size: 0.9rem;
  align-items: center;
  justify-content: center;
}