@charset "utf-8";
/* CSS Document */

*{
    margin: 10;
    padding: 10;
    box-sizing: border-box;
}

.Profile-pic {
    width: 150px;
    height: 180px;
    border-radius: 50%;
}

	.tagline{
		margin: 0px;
    	color: #777;
	}

body {
    font-family: "Poppins", sans-serif;
  	font-weight: 300;
  	font-style: normal;
    line-height: 1.5;
    background-color: #E4DFDF;
    color: #333;
    padding: 50px;

}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px ;

}

.heading1 h1{
font-family: "EB Garamond", serif;
	margin: 0px;
  	font-weight: 500;
	font-size: 20mm;
  	font-style: oblique
}
	

h2{
	background-color: #E1D2D3;
	font-family: "EB Garamond", serif;
  	font-weight: 500;
  	font-style: oblique;
	margin-bottom: 20px;
}

h3{
	font-family: "EB Garamond", serif;
  	font-weight: 500;
  	font-style: oblique
}

nav{
	margin-top: 0px;
    padding: 0px;
	background-color: #C9A3A3;
	
	
	
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

nav ul li{
	margin: 10px;
}

nav a {
	color: black;
    text-decoration: none;
    font-size: 1.1em;
}

nav a:hover {
	color: white;
    text-decoration: underline;
}

footer {
    margin-top: 40px;
    padding: 20px;
    background-color: #F4E7E7;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 2px solid #ddd;
}

footer h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

footer .social-links {
    list-style-type: none;
}

footer .social-links li {
    display: inline;
    margin: 0 15px;
}

footer .social-links a {
    color: #333;
    text-decoration: none;
}

footer .social-links a:hover {
    color: black;
    text-decoration: underline;
}