/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* EDITED Tailwind */
html, body {
  font-family: "gilroy-regular";
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: gilroy-black;
  src: url("../resources/fonts/gilroy/Gilroy-Black.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: gilroy-bold;
  src: url("../resources/fonts/gilroy/Gilroy-Bold.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: gilroy-semibold;
  src: url("../resources/fonts/gilroy/Gilroy-SemiBold.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: gilroy-medium;
  src: url("../resources/fonts/gilroy/Gilroy-Medium.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: gilroy-regular;
  src: url("../resources/fonts/gilroy/Gilroy-Regular.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.g900 {
  font-family: "gilroy-black";
  font-weight: normal;
  font-style: normal;
}

.g800 {
  font-family: "gilroy-bold";
  font-weight: normal;
  font-style: normal;
}

.g700 {
  font-family: "gilroy-semibold";
  font-weight: normal;
  font-style: normal;
}

.g600 {
  font-family: "gilroy-medium";
  font-weight: normal;
  font-style: normal;
}

.g500 {
  font-family: "gilroy-regular";
  font-weight: normal;
  font-style: normal;
}

.bg-edit-blur {
  filter: blur(20px);
}

.loader {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
}
.loader h4 {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 6rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 100;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 0.2;
}
.loader img {
  position: absolute;
  z-index: 10;
  width: 12rem;
}/*# sourceMappingURL=main.css.map */