/* Compétences */

.skill-container {
  background-color: var(--icon-skill-container);
  border-radius: 4px;
  padding: 8px;
  height: 80px;
  width: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--black);
  text-decoration: underline none;
}

.skill-container:hover {
  background-color: var(--hover-background);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
  transition: all 0.3s ease-in-out;
}

.skill-container {
  transition: all 0.3s ease-in-out;
}

.skill-container:focus-within {
  animation: focusOutAnimation 0.3s ease-in-out;
}

@keyframes focusOutAnimation {
  0% {
    transform: translateY(-4px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }

  100% {
    transform: translateY(0);
    box-shadow: none;
  }
}


.skill-image {
  width: 32px;
  height: 32px;
}