body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

[class^="column"] {
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  background-color: white;
  border: 1px solid #d1d1d1;
  padding: 5px 5px;
}

.title {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 4rem;
  letter-spacing: -1.4px;
  word-spacing: 6px;
  color: #7075ff;
  font-weight: 700;
  text-decoration: none;
  font-style: normal;
  font-variant: normal;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.main-control {
  display: flex;
  gap: 1rem;
  padding: 2rem;
}

.main-control > button {
  box-shadow: inset 0px 1px 0px 0px #ffffff;
  background: linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
  background-color: #f9f9f9;
  border-radius: 6px;
  border: 1px solid #dcdcdc;
  display: inline-block;
  cursor: pointer;
  color: #666666;
  font-family: Arial;
  font-size: 15px;
  font-weight: bold;
  padding: 6px 24px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #ffffff;
}
.main-control > button:hover {
  background: linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
  background-color: #e9e9e9;
}
.main-control > button:active {
  position: relative;
  top: 1px;
}
