:root {
  --main-color: #366CC9;
  --secondary-color: #F4F1BB;
  --secondary-color-opacity: rgba(244, 241, 187, 0.2);
  --green-color: rgb(208, 252, 215);
  --text-color: #494848;
  --text-color-light: #ffffff;
}

* {
  margin: 0;
  padding: 0;

  box-sizing: border-box;

  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif !important;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
}

span {
  color: var(--text-color);
}

a {
  text-decoration: none;
}

.container {
  padding: 0 8rem;
}

