body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card {
  width: 100%;
  max-width: 400px;
  background: url('./rtcard.jpeg') no-repeat center center/cover;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16;
}

.overlay {
  backdrop-filter: brightness(0.9); /* << brightness of the background */
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2rem 1.5rem;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.title {
  text-align: center;
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.subtitle {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.price-list .item {
  margin-bottom: 1rem;
}

.price-list .main {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 500;
}

.price-list .sub {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.price-list .sub-group {
  margin-top: 0.5rem;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0.5rem 0;
}

.contact {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.5;
}
