*, *::after, *::before {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}

::-moz-selection {
  background-color: #00ffa8; /* Change this color to whatever you like */
  color: #0c1013; /* Text color when highlighted */
}

::selection {
  background-color: #00ffa8; /* Change this color to whatever you like */
  color: #0c1013; /* Text color when highlighted */
}

/* Fallback for older browsers */
::-moz-selection {
  background-color: #00ffa8;
  color: #0c1013;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background: none;
}

input, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: transparent;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input:disabled, textarea:disabled, select:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

image {
  width: 100%;
}

h1, h2, h3, h4, h5, h6, article, section, nav, aside {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.5;
  border: none;
  color: #00ffa8;
}

p, a, strong, em, b, i, u, s, small, sub, sup, abbr, code, kbd, samp, var, cite, dfn, mark, time, ins, del, input, textarea, select, button {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.3rem;
  line-height: 1.5;
  border: none;
}

i, .fa-solid {
  font-size: 1.6rem;
  transition: 0.2s ease-out;
}

.container {
  padding: 1.25rem 2rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 1rem;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 100%;
}

.col {
  display: flex;
  padding: 1.3rem;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

body {
  background: #0c1013; /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #0c1013, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  max-height: 100vh;
  height: 100vh;
}

.loading {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading_img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 1rem;
  text-align: center;
}

.text-animation {
  color: #f3efec;
  font-size: 1.2rem;
  animation: animate-text 2s ease-in-out infinite;
}

@keyframes animate-text {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}/*# sourceMappingURL=main.css.map */