/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Navigation Bar */
.navbar {
    position: absolute;
    top: 10px; /* Adjust this value if needed */
    right: 20px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    margin-left: 15px;
    font-weight: bold;
}

.navbar a:hover {
    color: #007bff;
}

/* Content Section */
.content {
    margin-top: 50px; /* Increases space between nav bar and title */
    padding: 20px;
}

/* Title Styling */
h1 {
    margin-bottom: 40px; /* Adds space below the title */
    text-decoration: underline; /*underline the title*/
}

/* Paragraph Styling */
.intro-text {
    max-width: 800px;
    margin: 0 auto 20px auto; /* Centers text and adds space between paragraphs */
    line-height: 1.6;
}
