.about {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--second-bg-color);
  padding-bottom: 6rem;
  scroll-margin-top: 50px;
}

.about-img {
  position: relative;
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
}

.about-img img {
  width: 90%;
  border-radius: 50%;
  border: 0.2rem solid var(--main-color);
}

.about-img .circle-spin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-top: 0.2rem solid var(--second-bg-color);
  border-bottom: 0.2rem solid var(--second-bg-color);
  border-left: 0.2rem solid var(--main-color);
  border-right: 0.2rem solid var(--main-color);
  animation: aboutspinner 8s linear infinite;
}

.about-content {
  text-align: center;
  margin-top: 2rem;
}

.about-content h3 {
  position: relative;
  display: inline-block;
  font-size: 2.6rem;
  margin-bottom: 2rem;
}

.about-content p {
  position: relative;
  font-size: 1.6rem;
  margin: 2rem 0;
}

@keyframes aboutspinner {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
