/* 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");

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

main {
  max-width: 600px;   
  margin: 0 auto;     
  padding: 20px;
}

header {
  text-align: center;
}

footer p {
  text-align: center;
}


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

nav {
  text-align: center;
  font-color:firebrick;
}

nav a {
  margin: 0 15px;
}

/*add pseudoclasses for link colors*/
a:link {color: #d62828;}
a:hover {color:#f77f00;}
a:visited {color: #d62828;}


h4 {
  font-size:16px;
  text-align: center;
}

article {
  padding: 50px 0;
}

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

p {
  line-height: 1.5;
  text-align: left;
}

/* 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;
}
