/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
  height: 100%;
  overflow-x: hidden;
  font-size: 14px;
}

body {
  margin: 0;
  padding: 0;
  font-family: Inter, Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 1rem;
  height: 100%;
  color: black;
}

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

* {
  color-adjust: exact !important;
  -webkit-print-color-adjust: exact !important;
  print-color-adjust: exact !important;
  font-family: Inter, Helvetica, Arial, sans-serif;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

strong{
  font-weight: 600; /*  semiBold */
}

#root {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  line-height: 1.2;
}

#root > :first-child {
  flex-grow: 1;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400; /* normal */
  font-display: swap;
  src: url(/fonts/Inter-Light_mailstep.woff2) format('woff2'); /* inter 300 */
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600; /*  semiBold */
  font-display: swap;
  src: url(/fonts/Inter-Regular_mailstep.woff2) format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700; /*  bold */
  font-display: swap;
  src: url(/fonts/Inter-Medium_mailstep.woff2) format('woff2');
}
