* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  min-height: 100vh;

  .lux48-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: #111;
    color: #ccc;

    .lux48-header {
      text-align: right;
    }

    .lux48-main {
      .lux48-content {
        display: flex;
        gap: 20px;
        align-items: baseline;
        letter-spacing: 2px;
        padding: 20px;
        .lux48-title {
          font-size: 2.5rem;
          font-weight: bold;
        }
        .lux48--message {
          font-size: 1.2rem;
        }
      }
    }

    .lux48-footer {
      width: 100%;
      text-align: right;
    }
  }
}

@media (max-width: 600px) {
  .lux48-title {
    font-size: 1.7rem;
  }
  .lux48-container {
    padding: 1rem;
  }
}
