.hobbies__line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 1000px;
}

.hobbies__box {
  width: calc(33.333% - 1rem);
  height: 15rem;
  perspective: 1000px;
}

.hobbies__card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s;
}

.hobbies__box:hover .hobbies__card {
  transform: rotateY(180deg);
}

.hobbies__front,
.hobbies__back {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-ter);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  box-sizing: border-box;
  padding: 1rem;
  text-align: center;
}

.hobbies__front {
  background-color: var(--color-pri);
}

.hobbies__back {
  background-color: var(--color-ter);
  color: white;
  transform: rotateY(180deg);
}

.hobbies__front img {
  width: 4rem;
  height: auto;
  margin-bottom: 1rem;
}

.hobbies__name {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--color-sec);
}
