body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #004D40;
    color: white;
  }
  
  .container {
    max-width: 960px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
  }
  
  .themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .theme-option {
    background-color: #00695C;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 30px 10px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    transition: all 0.3s;
  }
  
  .theme-option:hover {
    background-color: #00897B;
    border-color: #ffffff;
  }
  
  button {
    background-color: white;
    color: #004D40;
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 8px;
    margin-top: 20px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #f0f0f0;
  }
  
  .hidden {
    display: none;
  }
  .cv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
  
  
  .cv-template {
    background-color: #00695C;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 2px solid white;
    outline: 3px solid white;
    outline-offset: -6px;
    


  }
  
  .cv-template img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .cv-template p {
    margin: 0;
    padding: 12px;
    font-weight: bold;
    color: white;
  }
  
  .cv-template:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  }
  @media (max-width: 768px) {
    .cv-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .cv-grid {
      grid-template-columns: 1fr;
    }
  }
  