@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');

:root {
  --default: #f4333d;
  --hover: #b0262d;
  --active: #801e23;
}

* {
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

main {
  padding: 1rem;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

h1 {
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;

  border: none;
  border-radius: 6px;
  padding: 0.75rem 1em;
  cursor: pointer;

  background-color: var(--default);
  color: white;
  text-decoration: none;

  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  white-space: pre;
}
.btn:hover {
  background-color: var(--hover);
}
.btn:active {
  background-color: var(--active);
}
