.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
    padding: 45px 25px 0px 25px;

}

.fa-brands.fa-behance{
  margin-top: 15px;
    text-align: end;
    color: #343436;
    font-size: 20px;

  }
.fa-brands.fa-linkedin-in {
    text-align: end;
    color: #343436;
    font-size: 20px;
    margin-right: 2px;

  }
.fa-solid.fa-envelope {
    text-align: end;
    color: #343436;
    font-size: 20px;
  }

  .cc {
    margin-top: 8px;
  }
.btn-download {
  height: 50px;
  width: 50px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #343436;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.4s ease;
}

/* tooltip */
.btn-download::after {
  content: "My CV";
  position: absolute;
  top: -40px;
  padding: 7px 10px;
  background-color: #ffffff;
  font-size: 1em;
  border-radius: 25px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transform: scale(0);
  transition: all 0.4s ease;
  white-space: nowrap;
}

/* icona */
.btn-download__icon {
  fill: #343436;
  transform: rotate(180deg); 
  transition: transform 0.4s ease, fill 0.4s ease;
}

/* hover */
.btn-download:hover {
  transform: translateY(-3px);
  background-color: #343436;
}

.btn-download:hover .btn-download__icon {
  fill: #ffffff;
  transform: rotate(180deg) scale(1.2); /
}

.btn-download:hover::after {
  transform: scale(1);
}

/* active */
.btn-download:active {
  transform: translateY(2px);
}


