* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Signature";
  src: url("./Bastliga.ttf") format("truetype");
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffe2d3;
}

#signature {
  height: 50vh;
  max-width: 50vw;
}

.path {
  visibility: hidden;
  animation: animate linear forwards;
  &:nth-child(1) {
    animation-duration: 1s;
    animation-delay: 0.5s;
  }
  &:nth-child(2) {
    animation-duration: 0.5s;
    animation-delay: 1.7s;
  }
  &:nth-child(3) {
    animation-duration: 1s;
    animation-delay: 2.4s;
  }
  &:nth-child(4) {
    animation-duration: 0.2s;
    animation-delay: 3.6s;
  }
  &:nth-child(5) {
    animation-duration: 0.1s;
    animation-delay: 4s;
  }
}

@keyframes animate {
  to {
    visibility: visible;
    stroke-dashoffset: 0;
  }
}

nav {
  position: absolute;
  height: 50px;
  top: 0;
  width: 100%;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: signature;
  font-size: 2.5rem;
  font-weight: 500;
  color: #fd7148;
}

a {
  text-decoration: none;
  color: #fd297b;
  transition: all 0.1s ease-in-out;
  &:hover {
    scale: 1.1;
  }
}
