body{
	background-color: rgb(154, 255, 252);
}
h1 {
  padding: 18px;
  border: 2px solid rgb(255, 72, 0);
  color: rgb(184, 143, 143);
  text-align: center;
  font-size: 50px;
  text-shadow: 2px 2px 2px black;
  background-image: url(../images/landscape.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
h1 img {
  width: 150px;
  margin-right: 2000px;
  border-radius: 50%;
}
h2{
	padding: 18px;
	border: 2px solid rgb(0, 0, 0);
	color: rgb(255, 255, 255);
	text-align: center;
	font-size: 50px;
	text-shadow: 2px 2px 2px black;
	background-image: url(../images/landscape.jpg)
}
h3{
	padding: 18px;
	border: 2px solid rgb(221, 135, 101);
	color: rgb(246, 255, 0);
	text-align: center;
	font-size: 50px;
	text-shadow: 2px 2px 2px black;
	background-image: url(../images/purpleland.jpg)
  
}
h3 img{
  width: 200px;
  margin: 10px;
}
p {
    padding: 18px;
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 20px;
    font: italic 1.1em/2.2 georgia;
    text-align: center;
    position: relative; /* Add position relative to create a reference for the absolute positioning of the underline */
    display: inline-block; /* Display paragraphs as inline blocks to make the underline fit their width */
}
p:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px; /* Adjust the value to position the underline */
    width: 100%;
    height: 2px;
    background-color: black;
	text-align: center;
}
p span {
    text-decoration: underline;
    color: rgb(87, 118, 255);
}
.container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 20px;
  }
  
a:link { 
	font-weight: bold; 
	text-decoration: none; 
	color: #B7A5DF;
	}
  a:link:hover {
    color: red;
  }
.intro { 
	min-width: 470px;
	width: 100%;
}
.summary p {
	font: italic 1.1em/2.2 georgia; 
	text-align: center;
}
footer { 
	text-align: center; 
	height: 100px;
  	
}
ul {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	list-style-type: none;
}