* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Roboto";
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/roboto/roboto-400.woff2") format("woff2"), url("/fonts/roboto/roboto-400.woff") format("woff"), url("/fonts/roboto/roboto-400.eot") format("eot"), url("/fonts/roboto/roboto-400.svg") format("svg"), url("/fonts/roboto/roboto-400.ttf") format("ttf");
}

@font-face {
  font-family: "Roboto";
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/roboto/roboto-700.woff2") format("woff2"), url("/fonts/roboto/roboto-700.woff") format("woff"), url("/fonts/roboto/roboto-700.eot") format("eot"), url("/fonts/roboto/roboto-700.svg") format("svg"), url("/fonts/roboto/roboto-700.ttf") format("ttf");
}

@font-face {
  font-family: "Poppins";
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/poppins/poppins-400.woff2") format("woff2"), url("/fonts/poppins/poppins-400.woff") format("woff"), url("/fonts/poppins/poppins-400.eot") format("eot"), url("/fonts/poppins/poppins-400.svg") format("svg"), url("/fonts/poppins/poppins-400.ttf") format("ttf");
}

@font-face {
  font-family: "Poppins";
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/poppins/poppins-700.woff2") format("woff2"), url("/fonts/poppins/poppins-700.woff") format("woff"), url("/fonts/poppins/poppins-700.eot") format("eot"), url("/fonts/poppins/poppins-700.svg") format("svg"), url("/fonts/poppins/poppins-700.ttf") format("ttf");
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: Roboto, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  color: var(--black);
  touch-action: manipulation;
  min-height: auto;
  max-height: none;
  height: inherit;
  background-color: var(--background-color);
}

input,
textarea,
select {
  font-family: Roboto, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
}

body>div:first-child {
  height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
b {
  font-weight: 700;
}

::selection {
  background-color: var(--deep-blue);
  color: var(--white);
}

div,
p {
  line-height: 1.5;
}

strong {
  font-weight: 700;
}