* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
body {
  width: 100%;
  height: 100vh;
  background-color: rgb(255, 255, 240);
  font-family: Nunito, sans-serif;
}

svg {
  display: block;
  margin: 0 auto;
}

path {
  fill: none;
  stroke: rgb(252, 0, 105);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
