@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --gray: #898989;
  --white: #eaedec;
}
* {
  font-family: "Montserrat", sans-serif;
}
body {
  background: var(--gray);
  color: white;
}
.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slogan {
  color: transparent;
  margin-bottom: 10rem;
}
footer .avanticons{
    font-size: 0.75rem;
    margin-right: 0.5rem;
}
path,
polygon {
  stroke: white;
  fill: white;
  fill-opacity: 0;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 860;
  stroke-dashoffset: 860;
  transition: ease-in-out;
  animation: draw 6s forwards, fill 4s forwards;
  /*animation: draw 3s linear forwards infinite alternate;*/
}

.char {
  font-size: 3vw;
  height: 40px;
  animation: an 1s ease-out 1 both;
  display: inline;
  color: white;
}
footer {
  background-color: var(--white);
  position: fixed;
  bottom: 0;
  left: 0;
  rightt: 0;
  width: 100%;
  min-height: 3em;
  color: var(--gray);
  padding: 1em;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
footer > div {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
footer a {
  color: var(--gray);
  text-decoration: none;
}
@keyframes fill {
  to {
    fill: white;
    stroke: white;
    fill-opacity: 1;
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
    stroke-opacity: 0;
  }
}

@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
    stroke-opacity: 0;
  }
}

@-moz-keyframes draw {
  to {
    stroke-dashoffset: 0;
    stroke-opacity: 0;
  }
}
@-o-keyframes draw {
  to {
    stroke-dashoffset: 0;
    stroke-opacity: 0;
  }
}

@keyframes an {
  from {
    opacity: 0;
    transform: perspective(500px) translate3d(-35px, -40px, -150px)
      rotate3d(1, -1, 0, 35deg);
  }
  to {
    opacity: 1;
    transform: perspective(500px) translate3d(0, 0, 0);
  }
}
@media only screen and (max-width:600px){
	footer{
		flex-direction:column;
	}
}
