
/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*===== VARIABLES CSS =====*/

 
  
  .resume {
    display: grid;
    justify-items: center;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 5rem;
    gap:5rem;
    
  }
  .resume img{
    width: 55%;
    height: 100%;
    margin-top: 50px;
  }
 
/* download cv button */
  .download-button {
   
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 120%;
  }
  
  .download-button:hover {
    background-color: #0056b3;
  }


 
.panel {
  height: 100vh;
  padding: 2rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .resume {
    margin-top: 80px;
    margin-bottom: 3rem;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .resume img {
    width: 90%;
    margin-top: 30px;
  }
  
  .download-button {
    padding: 8px 16px;
    font-size: 100%;
  }
}

@media (max-width: 480px) {
  .resume {
    margin-top: 70px;
    margin-bottom: 2rem;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .resume img {
    width: 100%;
    margin-top: 20px;
  }
  
  .download-button {
    padding: 6px 12px;
    font-size: 90%;
  }
}