:root {
  --primary-color: #EA4C89;
  --primary-color--hover: #eb2370;
}

.timer-main {
  margin: 16px;
}

.timer-main-title {
  margin-bottom: 32px;
}

.timer-block-content {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: center;
}

.timer-block-reset-link {
  margin-left: 32px;
}

.timer-label {
  font-size: 3em;
}

.timer-block-footer {
  display: none;
}

.timer-link {
  color: var(--primary-color);
  cursor: pointer;
  text-decoration: underline;

  &:hover {
    text-decoration: none;
  }
}

.timer-input-label {
  display: block;
  margin-bottom: 4px;
}

.timer-input-block {
  align-items: center;
  display: flex;
  gap: 8px;
}

.timer-button, .timer-button--secondary {
  background-color: var(--primary-color);
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  height: 40px;
  line-height: 20px;
  list-style: none;
  margin: 0;
  outline: none;
  padding: 10px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: color 100ms;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;

  &:hover,
  &:focus {
    background-color: var(--primary-color--hover);
  }

  &.timer-button--secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
}