:root{
--white: #fff;
--base-white: #E4E2DE;
--base-black: rgb(25, 26, 27);
--base-variant: #2b2b2c;
--accent-color: #C93F76;
}

html{
font-family: "Geist", sans-serif;
background: radial-gradient(var(--base-variant), var(--base-black));
background-repeat: no-repeat;
background-size: cover;
color: var(--base-white);
}

h1{
font-size: 8vw;
font-weight: 700;
}

body {
  margin: 0 auto;
  overflow-x: hidden;
  min-height: 100dvh;
  flex-direction: column;
  justify-content: center;
  display: flex;
  align-content: center;;
}

.welcome-screen{
  margin-top: 96px;
  height: 25dvh;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.welcome-screen h1{
background: linear-gradient(
    to right,
  #E4E2DE,
  #fff,
  #bbbab7,
  #fff,
  #E4E2DE
  );
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animate-gradient 3s linear infinite;
}


@keyframes animate-gradient {
  to {
    background-position: -200%;
  }
}

.text{
display: block;
line-height: auto;
}

.button{
background-color: rgba(25, 26, 27, 0.75);
padding: 12px 16px;
border-radius: 8px;
min-width: (208px, 10dvw);
text-align: center;
position: relative;
display:flex;
justify-content: center;
align-items: center;
transition: background-color 0.8s ease 0s;
}

@property --deg{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: true;
}

.button::before,
.button::after{
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: conic-gradient(
    from var(--deg) at center,
  #d684a5,
  #C93F76,
  #df2f75,
  #e089ac
  );
  border-radius: inherit;
  z-index: -2;
  padding: 2px;
  animation: autoRotate 2s linear infinite;
}

.button::after{
  filter: blur(24px);
  opacity: 60%;
}

@keyframes autoRotate{
  to{
    --deg: 360deg;
  }
}

.button:hover{
  background-color: rgba(25, 26, 27, 0.25);
}

a{
text-decoration: none;
font-weight: 700;
color: var(--base-white);
}

footer {
  margin-top: auto;
  text-align: center;
  font-size: 12px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.pointer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 2rem;
  aspect-ratio: 1;
  background-color: rgba(228, 226, 222, 0.2);
  border: 2px solid transparent;
  border-radius: 100%;
  pointer-events: none;

  transform: translate3d(var(--mouseX, 0), var(--mouseY, 0), 0)
    translate(-50%, -50%);

  transition: 0.3s ease-out;
  transition-property: transform, width, border, background-color;
}

body:has(a:hover, img:hover) .pointer {
  width: 5rem;
  background-color: transparent;
  border-color: rgba(228, 226, 222, 0.6);
}

@media (prefers-reduced-motion: reduce) {
  .pointer,
  #coordinates {
    display: none;
  }
}

@media (pointer: coarse) {
  .pointer,
  #coordinates {
    display: none;
  }
}

.socials {
  background-color: rgba(25, 26, 27, 0.75);
  display: flex;
  padding: 16px 24px;
  gap: 24px;
  width: fit-content;
  border-radius: 16px;
  box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  z-index: 1;
  position: fixed;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: 8px;
}

.socials img {
  transition: 0.1s ease-in, 0.3s ease-out;
}

.socials img:hover {
  transform: scale(1.2);
}
