	body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            padding: 10px;
            background-image: url('https://images.pexels.com/photos/743986/pexels-photo-743986.jpeg');
            background-size: cover;
            background-position: center;
        }
        h1, h2 {
            color: #444;
        }
        .profile {
            display: flex;
            align-items: center;
            background-color: rgba(255,255,255,0.8);
            padding: 10px;
            border-radius: 10px;
        }
        .profile .profile-text {
            margin-left: 20px;
        }
        .grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-gap: 20px;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .profile-image {
            border-radius: 50%;
            width: 400px;
        }	
	.contact-icons {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
        }
        .contact-icons img {
            width: 100px;
            height: 100px;
        }

/* Add a black background color to the top navigation */
.topnav {
    background-color: #FFFFCC;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #011704;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #011704;
  color: white;
}

/* Right-aligned section inside the top navigation */
.topnav-right {
  float: right;
}
