:root {
  color-scheme: dark;
  background: #09090b;
  color: #fafafa;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background: #09090b;
  color: #fafafa;
  -webkit-font-smoothing: antialiased;
}

main {
  width: min(960px, 100%);
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
}

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.title p {
  margin: 0;
  color: #a1a1aa;
  font-size: 13px;
  font-weight: 500;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.primary {
  background: #fafafa;
  color: #09090b;
}

.primary:hover {
  background: #e4e4e7;
}

.secondary {
  background: #18181b;
  color: #fafafa;
}

.secondary:hover {
  background: #27272a;
}

.preview {
  width: min(920px, 100%);
  max-width: 100%;
  height: auto;
  margin-top: 12px;
  border-radius: 16px;
  border: 1px solid #27272a;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
