.about_container {
  background-color: #020912;
  position: relative;
  z-index: 10;
  padding-bottom: 30px;
  margin-top: -10px;
  overflow: hidden;
}

.about_head {
  color: white;
  font-family: var(--font-family-main);
  text-align: center;
  font-size: calc(var(--heading-1) + 1rem);
  margin-bottom: 25px;
}

.about_holder {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about_poster {
  min-width: 340px;
  overflow: visible;
}

.about_content {
  padding: 0 25px;
  font-family: var(--font-family-primary);
  color: white;
  font-size: calc(var(--heading-2) - 0.3rem);
}

.about_btn {
  color: black;
  font-size: var(--heading-2);
  padding: 4px 10px;
  border-radius: 5px;
  background-color: white;
  border: none;
  transition: all 0.2s linear;
}

.about_btn:hover {
  box-shadow: 0px 0px 13px 0px rgba(203, 31, 31, 0.797);
  color: red;
  transform: scale(1.1);
}

#about_links a{
  /* display: block; */
  width: 46%;
}

.hello{
  font-size: 150px;
}

.my_profile{
  width: 180px;
  border-radius: 50%;
  border: none;
}

@media screen and (max-width: 1023px) {
  .about_holder {
    grid-template-columns: 1fr;
  }

  .about_content {
    font-size: calc(var(--heading-2) - 0.5rem);
  }

  .about_btn {
    font-size: calc(var(--heading-2) - 0.3rem);
  }
}

@media screen and (max-width: 767px) {
  .about_content {
    font-size: calc(var(--heading-2) - 0.7rem);
  }

  .about_btn {
    font-size: calc(var(--heading-2) - 0.5rem);
  }
  .hello{
    font-size: 80px;
  }
  .my_profile{
    width: 90px;
  }
}




.background_anime{
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: gray;
  transform: translate(-50%,-50%);
  outline: 2px solid gray;
  animation: ball_anmie 1s infinite;
}

.background_anime div{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: gray;
  outline: 2px solid gray;
  animation: ball_anmie 1s 0.1s infinite;
}

@keyframes ball_anmie {
  0%{
     outline-offset: 1px;
  }
  100%{
    outline-offset: 120px;
    opacity: 0;
  }
}




