main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.content {
  max-width: 720px;
  width: 100%;
  background: rgba(17, 22, 32, 0.75);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

#createPhrase {
  background-color: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;

  &:hover {
    background-color: #4338ca;
    box-shadow: 0 8px 18px rgba(79, 70, 229, 0.25);
    transform: translateY(-1px);
  }

  &:active {
    transform: translateY(0);
    box-shadow: none;
  }
}

#rand {
  display: flex;
  flex-direction: column;
  gap: 12px;

  p {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.6;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    color: black;
  }
}

.class1 {
  background-color: #ffb74d;
}

.class2 {
  background-color: #63e6be;
}
