.container {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

h2 {
  text-align: center;
  font-weight: 400;
}

.cv-button {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.6rem 1rem;
  border: 1px solid #0ff;
  border-radius: 8px;
  color: #0ff;
  text-decoration: none;
  transition: 0.3s ease;
}
.cv-button:hover {
  background: rgba(0,255,255,0.1);
  box-shadow: 0 0 12px #0ff5;
}

.fade-in-slide {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 0.6s ease forwards;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.show-pdf {
  width: 100%;
}

iframe {
  width: 100%;
  height: 80vh;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 12px #0ff5;
}

.back-home {
  text-align: center;
  margin-top: 1rem;
}

.back-home a {
  color: #0ff;
  text-decoration: none;
  font-size: 0.9rem;
}

.back-home a:hover {
  text-decoration: underline;
}
