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

/* Body */
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  background: #0f172a;
  color: #ffffff;

  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Container */
.container {
  text-align: center;
}

/* Title */
h1 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -1px;
}

/* Subtitle */
p {
  margin-top: 10px;
  font-size: 16px;
  color: #94a3b8;
}