* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--colorFontPrimary);
}

*,
::before,
::after {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

::selection,
::-moz-selection {
  background-color: var(--colorPrimary);
  color: white;
}

html {
  font-family: "Figtree", sans-serif;
}

.under-construction {
  position: fixed;
  top: 90px;
  left: 10px;
  transform: rotate(-30deg);
  font-size: 0.9rem;
  color: rgba(100, 100, 100, 0.8);
  z-index: 999999;
  pointer-events: none;
  font-weight: bold;
  white-space: nowrap;
}

body {
  font-weight: 300;
  color: #263238;
  line-height: 1.5;
  background: white;
}

svg {
  height: 100%;
}

content {
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
  align-items: center;
  height: calc(100vh - 220px);
}

.container {
  max-width: 1490px;
  padding: 0 50px;
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  margin: auto;
}
