html,
body {
  scroll-behavior: smooth;
  font-family: 'Roboto', sans-serif;
}

article,
div,
section {
  scroll-margin-top: 80px;
}
.point {
  position: relative;
  display: flex;
  align-items: center;
}

.point a {
  display: inline-block;
  position: relative;
  padding-right: 12px;
}

.point a::after {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-60%);
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background-color: #000;
}

.breathe-animation {
  animation: breathe 2s infinite;
}

@keyframes breathe {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
