* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family: var(--font-family);

  background:
    radial-gradient(circle at top left, rgba(132, 47, 131, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--color-background) 42%, #ffffff 100%);

  color: var(--color-text);

  line-height: 1.5;
}

img {
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

button {
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

.app {
  overflow: hidden;
}
