body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    
  }
  
  header {
    background-color: #6c96b2;
    color: white;
    padding: 20px;
    text-align: center;
  
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    
  }
  
  .profile-photo {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
  }
  
  h1 {
    margin: 0;
    font-size: 2.5rem;
  }
  
  section {
    padding: 20px;
  }
  
  h2 {
    color: #0073e6;
  }
  
  ul {
    list-style-type: none;
    padding: 0;
  }
  
  ul li {
    padding: 5px 0;
  }
  
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  body {
    border: solid rgb(6, 147, 240);
  }