body{
	background-color:HoneyDew;
	margin-left:50px;
	font-family:Arial, sans-serif;
}

nav a:hover {
    color: #FFD700;  /* Gold color */
    border-bottom: 2px solid #FFD700; /* Adds a line under the hovered link */
    padding-bottom: 5px;
}

.title{
	font-family:Garamond, serif;
	text-align:center;
}

.intro{
    display: flex;
    align-items: center;
    padding: 20px;  /* More padding around the intro section */
}

p {
    font-size: 18px; /* Increases the font size of all paragraphs */
	line-height: 1.6;
    margin: 20px auto; /* Adds more space around paragraphs */
    padding: 10px;
    max-width: 800px;
        }
		
.intro img {
    width: 400px;
    height: auto;
    border-radius: 18px;
    object-fit: cover;  /* Ensures the image doesn't get stretched */
	margin-right: 25px;
	margin-top: 10px;
	border: 1px solid;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0; /* More padding for a cleaner look */
    margin-top: 20px;
}
footer img {
    max-width: 50px;
    height: auto;
    margin-bottom: 10px; /* Adds space between the image and text */
}
footer p {
    font-size: 18px;
}
	