@import url('https://fonts.googleapis.com/css2?family=Alkatra:wght@400;500;600;700&display=swap');
/* font-family: "Alkatra", cursive; */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}

html {
  background-color: #793a80;
  /*
  background: linear-gradient(219.46deg, #110036 27.63%, #170059 100%),
    linear-gradient(219.46deg, #FFFFFF 27.63%, #19004E 100%),
    radial-gradient(100% 246.94% at 100% 100%, #FFFFFF 0%, #000353 100%),
    linear-gradient(121.18deg, #1400FF 0.45%, #3A0000 100%),
    linear-gradient(192.86deg, #F06060 9.22%, #008B7A 87.25%),
    linear-gradient(150.76deg, #0015D5 15.35%, #000B6C 89.57%);
  background-blend-mode: screen, overlay, overlay, difference, difference, normal;
  */
  background-image: url(elegant-rainbow.png);
  /* gradient from https://codioful.com/elegant-rainbow */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body {
  font-family: "Alkatra", cursive;
  color: white;
  text-align: center;
}

.baseURL:link {
  text-decoration: none;
  color: white;
}
.baseURL:hover {
  text-decoration: none;
  color: #bbb;
}
.baseURL:active {
  text-decoration: none;
  color: #793a80;
}
.baseURL:visited {
  text-decoration: none;
  color: white;
}

.main {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  padding: 250px 0;
}

.text {
  margin: auto;
  width: max-content;
  max-width: 100%;
  background-color: #ffffff40;
  padding: 5px 20px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -webkit-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
}

#wait {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #793a80;
  background-image: url(elegant-rainbow.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-transition: 1.25s;
  -moz-transition: 1.25s;
  -o-transition: 1.25s;
  transition: 1.25s;
}
#spinner {
  width: 70px;
  max-width: 100%;
  height: auto;
}

/* RESPONSIVE */

@media (prefers-color-scheme: dark) {
  .text {
    background-color: #00000040;
  }
}

/* SITE-WIDE RESPONSIVE LAYOUTS */
/* inherited from ReactOSPH/ReactSquad */
@media screen and (min-width: 768px) {
  body {
    font-size: large;
  }
}
@media screen and (min-width: 1080px) {
  body {
    font-size: larger;
  }
}
@media screen and (min-width: 1440px) {
  body {
    font-size: x-large;
  }
}
@media screen and (min-width: 2160px) {
  body {
    font-size: xx-large;
  }
}