*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text-primary);
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(5, 150, 105, 0.06), transparent 55%),
    radial-gradient(ellipse 70% 45% at 80% 100%, rgba(8, 145, 178, 0.05), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 45%, #ffffff 100%);
  overflow-x: hidden;
}

::selection {
  background: rgba(5, 150, 105, 0.2);
  color: var(--color-text-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

section {
  position: relative;
}
