.profile {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transform-style: preserve-3d;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 2rem;
  transition: all .5s;
  display: flex;
}

.profile:hover {
  transform: translateY(-10px)rotateX(5deg);
  box-shadow: 0 15px 35px #1f268766;
}

.profile-image {
  object-fit: cover;
  border: 4px solid #fffc;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin-bottom: .5rem;
  transition: all .5s;
  box-shadow: 0 8px 32px #1f268733;
}

.profile-content {
  text-align: center;
  flex: 1;
  width: 100%;
}

.profile-name {
  color: #2c3e50;
  text-align: center;
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.profile p {
  color: #666;
  text-align: justify;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.profile-linkedin {
  width: 100%;
  color: inherit;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.profile-linkedin:hover {
  color: inherit;
  text-decoration: none;
}

.profile-linkedin:hover .profile-image {
  transform: translateZ(20px)scale(1.05);
  box-shadow: 0 12px 40px #1f26874d;
}

@media (width <= 768px) {
  .profile {
    padding: 1.5rem;
  }

  .profile-image {
    width: 100px;
    height: 100px;
  }
}

.profile p {
  text-align: justify;
  color: var(--baground-color);
}
/*# sourceMappingURL=agora-main.8689c119.css.map */
