* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #0f172a;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  padding: 24px;
}

.card {
  background: #1e293b;
  width: 700px;
  max-width: 100%;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 0, 0, .5);
  text-align: center;
  color: white;
}

h1 {
  font-size: 52px;
  margin-bottom: 10px;
}

h2 {
  color: #60a5fa;
  margin-bottom: 20px;
}

.desc {
  font-size: 24px;
  margin-bottom: 40px;
}

.items {
  font-size: 22px;
  line-height: 2;
  margin-bottom: 30px;
}

hr {
  margin: 30px 0;
  opacity: .3;
}

p {
  font-size: 20px;
}
