body {
  font-family: "Verdana";
}


h1 {
  text-align: center;
  opacity: 0.9;
}
.generator {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
}

.controls {
  display: block;
}


table {
  margin: 20px auto;
  padding: 0;
  background-color: #332F4A;
  border: none;
  border-radius: 5px;
}

tr {
  background-color: #fff8e5;
}

th {
  margin: 5px;
  padding: 15px;
  color: #99dce7;
  background-color: #365e80;
}

td {
  padding: 15px;
  text-align: center;
}

input {
  width: 70px;
  padding: 5px;
  margin: 10px;
  font-size: 16px;
  background: #dfe7ff;
  border: none;
  border-radius: 5px;
}

.button {
  margin-top: 15px;
  padding: 9px 30px;
  border: none;
  border-radius: 5px;
  background-color: #FDC754;
  color: #630f71;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  transition: transform 0.1s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.button:active {
  transform: scale(0.97);
}
.button:focus {
  border: 2px dashed black;
}

.table-placeholder {
  max-width: 500px;
  width: 100%;
  margin: 20px auto;
}
.table-placeholder.hidden {
  display: none;
}
.table-placeholder__row {
  width: 100%;
  display: flex;
}
.table-placeholder__row:nth-child(1) .table-placeholder__item {
  background: #e2ebf3;
}
.table-placeholder__item {
  max-width: 150px;
  width: 100%;
  height: 36px;
  margin: 2px;
  background: #f1f5f9;
  border-radius: 5px;
}

#article {
  padding: 5% 10% 0;
}