*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--textColor);
  background-color: var(--footerBgColor);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

main {
  width: 100%;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  margin: 0;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
