/*----------INITIALIZE STYLES----------*/
:root {
  --primary: #182041;
  --secondary: #1c3d96;
  --tertiary: #314e85;
  --accent: #ebc871;
  --accent2: #ebc97138;
  --font: #c4e8ff;
  --fontBox: #294f8083;
  --text:#ffffff;
  --fontOpacity: 0.50;
  --radius: 50px;
}

* {
  font-family: "Forum", serif;
  color: var(--text);
}

h1, h2, h3, h4 {
  font-family: "Yeseva One", serif;
}

h5 {
  font-family: "Great Vibes", cursive;
}

/*------------------------------------*/
.bg-font {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: url("../img/font2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.logo {
  width: 370px;
}

.line {
  width: 1px;
  height: 100%;
  border-right: 1px solid var(--text);
  margin: 0 7px 0 2px;
}

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

.text-regular, .input {
  font-family: "glacial";
}

.input {
  background: white;
}

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

.button-secondary {
  border: 2px solid var(--accent);
  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;
}

.alltext-hidden {
  display: none;
}

.titleName {
  font-size: 5rem;
  color: var(--accent);
  line-height: 5rem;
}

.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 */