@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;600;800&display=swap');

body {
  padding: 0;
  margin: 0;
  font-family: montserrat,sans-serif;
  font-weight: 500;
  text-align: center
}

.center {
  display: flex;
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 40%, #1a1a24 0%, #0c0c10 70%);
  justify-content: center;
  align-items: center;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  width: min(70vw, 460px);
  display: flex;
  justify-content: center;
}

.container svg {
  width: 100%;
  height: auto;
}

.wordmark {
  margin: -1.5rem 0 0;
  font-weight: 800;
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  line-height: 1;
  background: linear-gradient(90deg, #0054ff 0%, #d347ff 50%, #fc0137 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.tagline {
  margin: 1rem 0 0;
  min-height: 1.4em;
  max-width: 90vw;
  font-weight: 300;
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  text-transform: uppercase;
  color: rgba(220, 220, 235, 0.55);
  transition: opacity 0.4s ease;
}

.contact {
  margin: 0.85rem 0 0;
  font-weight: 300;
  font-size: clamp(0.65rem, 1.6vw, 0.8rem);
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  color: rgba(220, 220, 235, 0.35);
}

#love {
  position: fixed;
  width: inherit;
  color: rgba(200, 200, 200, 0.48);
  bottom: 1rem ;
  -webkit-tap-highlight-color: transparent;
  font-size: 1.2rem;
}

#svgator {
  color: rgba(100, 90, 210, 0.8);
}

#svgator:hover {
  color: rgba(100, 90, 230, 1);
}

a:visited {
  color: rgba(100, 90, 210, 1);
}