@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap" rel="stylesheet"');
:root {
  --color-bg: #26242e;
  --color-primary: #4ac5f6d4;
  --color-medium: #eeeeee;
  --color-dark: #202330;
  --color-switch-theme: #fff;
  --font-title: "Playfair Display", serif;
  --font-base: Lato, sans-serif;
}

.c-progress-bar {
  background-color: var(--color-primary);
  height: 100px;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 1;
  top: 0;
  animation-name: progress-bar;
  animation-timeline: scroll(y);
}

@keyframes progress-bar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}/*# sourceMappingURL=style2.css.map */