/* The @import rule below imports the Playfair Display and Source Sans Pro fonts into the stylesheet. You don't have to edit this line.*/
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&family=Source+Sans+Pro:wght@400&display=swap");

/* anchor tag settings */
a:link    {color: #d62828;}
a:visited {color: #d62828;}
a:hover   {color: #f77f00;}
a:active  {color: #d62828;}

body {
  background-color: #eae2b7;
  color: #003049;
  font-family: "Source Sans Pro", Tahoma, Geneva, Verdana, sans-serif;
  padding: 40px;
}

/* Set the font family for any h1, h2, or h3 heading */
h1,
h2,
h3 {
  font-family: "Playfair Display", Times, serif;
}

/* Set font size for h2 and h3 heading */
h2 {
  font-size: 24px;
}
h3 {
  font-size: 18px;
}

article {
  padding: 50px 0;
}

/*article div {
  text-align: center;
  width: 100%;
} */

p {
  line-height: 1.5;
}

/* The div container constrains the content width within the main container to 600px */
div {
  margin: auto;
  width: 600px;
}

img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

hr {
  border: 1px solid black;
}

/* Add your solution below */

.image-circle {
  border-radius: 50%;
  border: 2px solid #003049;
  display: block;
  margin: 0 auto;
}

.about {
  text-align: center;
}

.about-paragraph {
  text-align: justify;
}

header {
  text-align: center;
}

/* Add a 15 pixel space between navigation items except for the last one */
nav a:not(:last-child) {
  margin-right: 15px; 
}

/* Centers the heading, project name, and image horizontaly on the page */
.portfolio {
  text-align: center;
}

/* Changes the text alignment just of the paragraph elements within Portfolio section */
.portfolio p {
  text-align: justify;
}

.contact {
  text-align: center;
}

footer {
  text-align: center;
}