/* Styling for the Home Page specific text */
.welcome-message {
    text-align: center; /* Centers the "Hi, I'm Maura" text */
}

.welcome-message h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.welcome-message hr {
    border: 0;
    height: 2px;
    background-color: #d8a7a7; /* A slightly darker pink for the line */
    width: 80%;
    margin: 20px auto;
}

.welcome-message h3 {
    font-size: 1.8rem;
    font-weight: normal;
}

/* Creating the Circular Image */
.profile-pic {
    width: 400px; /* Adjust size as needed */
    height: 400px; /* Height and width must be the same for a perfect circle */
    object-fit: cover; /* Prevents the photo from looking stretched */
    border-radius: 50%; /* This is the magic line that makes it a circle */
}



