:root {
  --text-dark: #011936;
  --text-light: #ffffff;
  --text-accent: #249bda;
  --text-light-blue: #f5faff;
  --text-blue: #ebf2fb;
  --text-gray: #acbcd0;
  --text-error: #fe5f55;
  --background-primary: #ffffff;
  --background-secondary: #011936;
  --background-blue: #ebf2fb;
}

@font-face {
  font-family: 'Geologica-Medium';
  font-weight: 500;
  src: url('../../fonts/Geologica-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Geologica';
  font-weight: 400;
  src: url('../../fonts/Geologica-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Geologica-SemiBold';
  font-weight: 600;
  src: url('../../fonts/Geologica-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'GeologicaRoman-Medium';
  font-weight: 500;
  src: url('../../fonts/GeologicaRoman-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'GeologicaRoman';
  font-weight: 400;
  src: url('../../fonts/GeologicaRoman-Regular.ttf') format('truetype');
}
*,
*::before,
*::after {
  box-sizing: border-box;
  /* Set the sizing of an element to include it's border */
}

.is-hidden {
  opacity: 0;
}

main {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

* {
  margin: 0;
  /* Set the default margin to 0 */
  padding: 0;
  /* Set the default padding to 0 */
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
  /* Turn off numbered and unordered list decoration */
}

html:focus-within {
  scroll-behavior: smooth;
  /* Make the scrolling inside of any scrollable element smooth */
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  /* Makes link undelines look better */
}

img,
svg,
video,
canvas {
  max-width: 100%;
  /* Makes it responsive */
  height: auto;
  /* Makes it responsive */
  vertical-align: middle;
  /* Makes text next to inline images look better */
  font-style: italic;
  /* If the images don't load it makes the alt decription look better */
  background-repeat: no-repeat;
  background-size: cover;
}

input,
button,
textarea,
select {
  font: inherit;
  cursor: pointer;
}

button {
  border: none;
  background-color: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  -moz-appearance: textfield;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition: none;
  }
}
body,
html {
  height: 100%;
  scroll-behavior: smooth;
  position: relative;
}

body {
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
ul,
p {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.header {
  position: fixed;
  inset-block-start: 0;
  background: #3d3d3d;
  z-index: 10;
}
.header__container > button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3d3d3d;
  padding: 10px 40px;
}
.header__container > button > svg {
  width: 119px;
  height: 17px;
} /*# sourceMappingURL=index.css.map */
