:root {
  --white: rgb(201, 204, 224);
  --black: rgb(23, 23, 32);
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-size: 1rem;
  line-height: 1rem;
  font-family: "Inter", sans-serif;
  color: var(--white);

  background-color: unset;
  border: none;
  outline: none;
}

body {
  display: flex;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-color: var(--white);
}

button {
  position: relative;
  font-weight: bold;
  font-size: 2rem;
  line-height: 2rem;
  padding: 1rem 2rem 1rem 2rem;
  background-color: var(--black);
  margin: 0;

  border-radius: 1000px;
  cursor: pointer;
  user-select: none;
  border: none;
  overflow: hidden;

  transition: all 150ms ease-in-out;
}

button:hover {
  transform: scale(1.05);
}

button:active {
  transform: scale(0.98);
  opacity: 50%;
  transition: all 25ms ease;
}
