.cv {
    font-family: inherit;
    font-size: 20px;
    background: #212121;
    color: white;
    fill: rgb(155, 153, 153);
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 15px;
    font-weight: 1000;
    cursor: pointer;
  }
  
.cv span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
  }
  
.cv svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
  }
  
.cv:hover {
    background: #000;
    
}
  
.cv:hover, .svg-wrapper {
    transform: scale(1.2);
    transition: .5s linear;
  }
  
.cv:hover svg {
    transform: translateX(3em) scale(1.1);
    fill: #fff;
  }
  
.cv:hover span {
    opacity: 0;
    transition: .5s linear;
  }
  
.cv:active {
    transform: scale(0.95);
  }
  
  /* contact */

.profile-btn2{
  font-size: 20px;
  font-weight: bold;
  border: none;
  margin-top: 20px;
  height: fit-content;
  background-color:white;
  padding: 12px 25px;
  border-radius: 10px;
  box-shadow: black 2px 2px 10px;
  transition: 2s;
}
.profile-btn2:hover{
  background-color: black;
  color: white;
}
  
  
  
  
