* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1.25rem;
  background: url('yarn.jpg') center center / cover no-repeat fixed;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.card {
  max-width: 560px;
  background: rgba(20, 18, 22, 0.42);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card p {
  color: #fbf6ee;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.card p:last-child {
  margin-bottom: 0;
}

.logo {
  width: min(60vw, 320px);
  height: auto;
  background: rgba(250, 246, 238, 0.88);
  padding: 0.85rem 1.75rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
