@font-face {
  font-family: 'Open Sans';
  src: url("/fonts/gel/fonts/OpenSans-Regular.ttf");
}

@font-face {
  font-family: 'Open Sans Semibold';
  src: url("/fonts/gel/fonts/OpenSans-SemiBold.ttf");
}

@font-face {
  font-family: 'Open Sans Bold';
  src: url("/fonts/gel/fonts/OpenSans-Bold.ttf");
}

@font-face {
  font-family: 'Open Sans Light';
  src: url("/fonts/gel/fonts/OpenSans-Light.ttf");
}

@font-face {
  font-family: 'Nunito Bold';
  src: url("/fonts/gel/fonts/Nunito-Bold.otf");
}

@font-face {
  font-family: 'Nunito Semibold';
  src: url("/fonts/gel/fonts/Nunito-Semibold.otf");
}

html {
  height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: auto;
  letter-spacing: 0.0128em;
  height: auto;
  min-height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-family: 'Nunito Semibold';
}

a {
  font-weight: 400;
  font-family: 'Open Sans Semibold';
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  &:focus {
    outline-offset: 3px;
    outline-width: 2px;
  }
}
