/*----------INITIALIZE STYLES----------*/
:root {
  --pink: #e13955;
  --mint: #ccffba;
}

/*------------------------------------*/
h1 {
  font-family: "Lobster", sans-serif;
}

.bg-font {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.logo {
  width: 370px;
}

.line {
  border-right: 3px solid var(--primary);
}

.letter-xl {
  letter-spacing: 0.4rem;
}

.input {
  background: white;
}

.button {
  background: var(--primary);
}
.button:hover {
  background: var(--tertiary);
}

.button-secondary {
  background: var(--secondary);
}
.button-secondary:hover {
  background: var(--tertiary);
}

.cursor-pointer {
  cursor: pointer;
}

.bubble-line {
  width: 100%;
  border-bottom: 5px dotted var(--accent);
}

.text-shadow {
  text-shadow: 2px 2px 2px black;
}

.loader-page {
  width: 100%;
  height: 100%;
  background: var(--font);
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
}

.loader-content {
  width: 100%;
  height: 100%;
}

.loader {
  --r1: 154%;
  --r2: 68.5%;
  width: 60px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(var(--r1) var(--r2) at top, rgba(0, 0, 0, 0) 79.5%, white 80%), radial-gradient(var(--r1) var(--r2) at bottom, white 79.5%, rgba(0, 0, 0, 0) 80%), radial-gradient(var(--r1) var(--r2) at top, rgba(0, 0, 0, 0) 79.5%, white 80%), var(--font);
  background-size: 50.5% 220%;
  background-position: -100% 0%, 0% 0%, 100% 0%;
  animation: l9 1s infinite linear;
}
@keyframes l9 {
  33% {
    background-position: 0% 33%, 100% 33%, 200% 33%;
  }
  66% {
    background-position: -100% 66%, 0% 66%, 100% 66%;
  }
  100% {
    background-position: 0% 100%, 100% 100%, 200% 100%;
  }
}/*# sourceMappingURL=theme.css.map */