* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0b0b;
  color: #e5e5e5;
  font-family: monospace;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 24px;
  width: 100%;
}

.quote {
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
  opacity: 0.85;
  max-width: 600px;
}

img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.7;
}

a:hover {
  opacity: 1;
  text-decoration: underline;
}

