@keyframes slideInFromBottom {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.About {
  display: flex;
  align-items: center;
  position: relative;
}

.scroll-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: scroll;
  width: 100%;
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(transparent,#c71340);
  border-radius: 6px;
}
/*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(transparent,#fff);
}*/

.About h1 {
  font-size: 45px;
  margin-top: 200px;
}

#About-W {
  margin-bottom: 100px;
}

.cv-button {
  margin-left: 20px;
}
/*
.cv-button {
  margin-left: 20px;
  position: relative;
  display: inline-block;
  color: white;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.cv-button:after {
  content: "";
  background: white;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
}

.cv-button:hover:after {
  width: 200px;
  height: 200px;
  opacity: 0;
} */

.about-me-D {
  text-align: center;
  margin-top: 20px;
  width: 55%;
  font-size: x-large;
  animation: slideInFromBottom 1s ease-out;
}

.about-me-D1 {
  margin-bottom: 1%;
  animation: slideInFromBottom 1s ease-out;
}

.about-me-D2 .about-me-D1 {
  margin-bottom: 1%;
  animation: slideInFromBottom 1s ease-out;
}

.about-buttons-container {
  margin-top: 2.5%;
  display: flex;
  justify-content: space-evenly;
  width: 30%;
}

.intrests {
  animation: slideInFromBottom 1s ease-out;
}

#Interests-h1 {
  font-size: 40px;
  margin-bottom: 30px;
}

#WorkedW-h1 {
  font-size: 40px;
  margin-bottom: 30px;
}

.companies {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 45%;
  margin-bottom: 50px;
  background-color: var(--c3);
  padding: 20px;
  border-radius: 20px;
  font-size: 20px;
  animation: slideInFromBottom 1s ease-out;
}
