* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #111;
  background: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  text-align: center;
}

.back {
  display: inline-block;
  margin-top: 72px;
  color: #111;
  text-decoration: underline;
  opacity: 0.6;
}

.pitch {
  margin: 0 0 12px;
  font-size: 36px;
  white-space: nowrap;
}

.disrupt {
  padding: 6px 12px;
  border: 1px solid #111;
  background: #f2f2f2;
  cursor: pointer;
  font-size: 32px;
}

.disrupt:disabled {
  opacity: 0.6;
  cursor: wait;
}
