.widget {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.widget-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #2e2f42;
}

.change-color {
  padding: 8px 16px;
  width: 148px;
  height: 40px;
  border-radius: 8px;
  background-color: #4e75ff;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  transition: background-color 250ms linear;
}

.change-color:hover,
.change-color:focus {
  background-color: #6c8cff;
}
