@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Readex+Pro:wght@200;300;400;500;600;700&display=swap");

:root {
  --color-0: #fff;
  --color-1: #80a9d4;
  --color-2: #0052a9;
}

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  padding: 0;
  font-size: 62.5%;
  height: calc(100vh - 3px);
  width: calc(100vw - 3px);
  margin: 0;
}

body {
  padding: 12px;
  height: calc(100vh - 3px);
  width: calc(100vw - 3px);
  margin: 0;
}

#title-main {
  position: absolute;
  top: 18%;
  margin: auto auto;
  width: calc(100% - 12px);
  height: 60%;
  /* background-color: aqua; */
  /* padding: clamp(8rem, 16vw, 22rem); */
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  pointer-events: none;
}

#aljanah-logo {
  max-width: clamp(18rem, 380px, 28rem);
  opacity: 0.8;
  animation: appear 4s ease-in-out infinite 0.1s;
}

@keyframes appear {
  0% {
    opacity: 0.8;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 0.8;
  }
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-family: "Readex Pro", sans-serif;
  font-weight: lighter;
  font-size: 3rem;
  letter-spacing: 0.45rem;
  color: var(--color-0);
  pointer-events: all;
  /* cursor: pointer; */
  animation: glow 6s ease-in-out infinite 0.1s;
  user-select: none;
  text-align: center;
}

/* h1:hover {
} */
@keyframes glow {
  0% {
    color: var(--color-0);
  }

  50% {
    color: var(--color-2);
  }

  100% {
    color: var(--color-0);
  }
}

[id^="particles-"] {
  position: relative;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background: linear-gradient(to top, var(--color-2), var(--color-1));
  /* background-color: #0052a9; */
}

#copyright-text {
  display: flex;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: bold;
}

#copyright-text>a {
  color: #7c7c7c;
  text-decoration: none;
  transition: color .05s ease-out;
}

#copyright-text>a:hover {
  color: #2b2b2b;
}