body {
  font-family: 'Montserrat', sans-serif;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #f8f8f8;
  gap: 24px;
}

body > p {
  margin: 0;
}

a {
  color: #2e2f42;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 36px 88px;
}

.widget p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5; /* 150% */
  letter-spacing: 0.04em;
  color: #2e2f42;
}

.change-color {
  width: 148px;
  height: 40px;
  padding: 8px 16px;
  background: #4e75ff;
  border-radius: 8px;

  border: none;
  cursor: pointer;

  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;

  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

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