body {
/*     background-color: #bbd2ea; */
    font-family: "Times New Roman", serif;
    color: #333;
    /* background-color: #f9f9f9; */
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text */
    
    
    margin: 0;
    padding: 0;
  }
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  h1, h2 {
    color: #444;
  }


  h1 {
    text-align: center;
  } 

  nav ul {
    list-style-type: none;
    padding: 0;
  }
  nav ul li {
    display: inline;
    margin-right: 10px;
  }
  a {
    color: #1a73e8;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
  section {
    margin-top: 20px;
  }

.linkedin-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.linkedin-icon:hover {
    transform: scale(1.1);
}

a img, a i {
    transition: transform 0.3s ease, color 0.3s ease;
}

a {
    color: #0000EE; /* Standard blue links */
    text-decoration: none;
}

a:hover {
    color: #6BBF59 /* Soft orange hover effect */
}

button, .accent {
    background-color: #6BBF59; 
    color: #ffffff; /* White text */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover, .accent:hover {
    background-color: #6BBF59 
}


a img:hover, a i:hover {
    transform: scale(1.1);
}

