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

:root {
  --startColor: hsl(0, 0%, 19%);
  --stopColor: hsl(0, 0%, 15%);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: grid;
  place-items: center;
  background-color: #333333;
  overflow: hidden;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.container {
  height: 100vh;
  width: 100vw;
  max-width: 1240px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  filter: blur(80px);
}

.container > svg {
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translate(50%, -80%);
  will-change: transform;
  width: 100vmin;
  height: 100vmin;
}

path {
  cursor:auto;
}

.logo {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -25%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
  background-color: transparent;
}

.logo svg {
  width: 40vmin;
  padding-bottom: 3rem;
  transform: translateX(5%);
}

.st0{fill:hsl(0, 0%, 100%);}
.st1{fill:hsl(228.18 92% 44% / 1);}
.st2{fill:hsl(0 0% 100%);}

h1, p {
  letter-spacing: -0.02rem;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: hsl(0 0% 100% / .5);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
  user-select: none;
}

p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

h1 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
}

@media screen and (max-width: 470px) {
  .container {
    filter: blur(60px);
  }
  .container > svg {
    transform: translate(50%, -100%);
  }
  h1, p {
    letter-spacing: -0.02rem;
    font-size: 1rem;
  }
}

@media screen and (min-width: 471px) and (max-width: 740px) {
  .container {
    filter: blur(60px);
  }
  .container > svg {
    transform: translate(50%, -100%);
  }
  h1, p {
    letter-spacing: -0.02rem;
    font-size: 1.1rem;
  }
}