/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #ffc0cb; /* Light pink background */
    margin: 0;
    padding: 0;
}

/* Header Styling */
h1 {
    color: #008080; /* Teal color for the header */
    font-size: 3em;
    margin-top: 20px;
}

/* Paragraph Styling for class 'intro' */
.intro {
    font-size: 1.2em;
    color: #333333; /* Dark grey */
    margin: 20px auto;
    max-width: 600px;
}

/* Image Styling for ID 'profile-image' */
#profile-image {
    width: 300px;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

/* Link Styling */
a {
    display: inline-block;
    margin-top: 20px;
    font-size: 18px;
    color: blue;
    text-decoration: none;
}

a:hover {
    color: #ff6347; /* Change color on hover (tomato color) */
}
