@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: #c69c6d;
  --color-1: #577173;
  --color-2: #a2b0b1;

  /* --color-0: #fff;
  --color-1: #80a9d4;
  --color-2: #0052a9;
  --color-3: #c69c6d;
  --color-4: #577173;
  --color-5: #a2b0b1; */
}

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  padding: 0;
}

html {
  height: 100svh;
  height: 100vh;
  margin: 0;
}

body {
  height: calc(100vh - 6px);
  padding: 12px;
}

#title-main {
  position: absolute;
  left: 0;
  top: 18%;
  margin: auto auto;
  width: 100vw;
  height: 60vh;
  /* background-color: aqua; */
  /* padding: clamp(8rem, 16vw, 22rem); */
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  pointer-events: none;
}

#ac-logo {
  /* max-width: clamp(18rem, 380px, 28rem); */
  max-width: clamp(22rem, 620px, 36rem);
  opacity: 0.8;
  animation: appear 8s ease-in-out infinite 0.1s;
}

@keyframes appear {
  0% {
    opacity: 0.8;
  }

  50% {
    opacity: 0.1;
  }

  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: #fff;
  }

  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 bottom, var(--color-1), var(--color-0));
  overflow: hidden;
}

#copyright-text {
  display: flex;
  justify-content: center;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  /* font-style: italic; */
  font-size: 1rem;
  font-weight: bold;
}

#copyright-text > a {
  color: #7c7c7c;
  text-decoration: none;
  transition: color 0.05s ease-out;
}

#copyright-text > a:hover {
  color: #2b2b2b;
}
