body {
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    background: #f4f4f4;
    color: #333;
    text-align: justify;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding:0;
    margin:0;
  }
  .btn-portfolio {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  background-color: #0078d4;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn-portfolio:hover {
  background-color: #007bff;
}

  .main-wrapper {
    display: flex;
    flex-direction: column;
    width: 50%;
  }

  header {
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    justify-content:center;
  }

  .profile-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .title{
    margin: 5px;
    margin-bottom: 7px;
  }

  p{
    margin: 5px;
  }

 .logo{
    margin-top: 15px;
  }

  h1{
    margin: 5px;
    padding: 0;
  }
  
  .section {
    display: flex;
    flex-direction: column;
  }
  
  .section-title {
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 1000;
    border-bottom: 4px solid #007bff;
    padding-bottom: 5px;
    width: 100%;
  }
  
  .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  
  .flex-col {
    flex: 1 1 45%;
    box-sizing: border-box;
  }
  
  .skills-list {
    padding: 0;
    padding-left: 3em;
    padding-right: 3em;
  }
  
  h4{
    margin-bottom: 0em;
  }

  .skills-list li {
    margin-bottom: 15px;
  }
  
  footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    color: #777;
    font-size: 0.9rem;
  }
  
  @media (max-width: 768px) {
    .main-wrapper {
      width: 90%;
    }
  }
  
  @media print {
    .profile-image {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 50%;
    }
    
  h1{
    margin: 5px;
    padding: 0;
  }
   
  }