/* Reset defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: sans-serif;
}

body {
  background: url('/background.jpg') no-repeat center center fixed;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  color: white;
}

.logo {
  max-width: 600px;
  margin-bottom: 20px;
}

.coming-soon {
  font-size: 1.5rem;
  letter-spacing: 2px;
}

footer {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #6d5a4d;
}