/* Reset default margin and padding for better layout */
body {
    margin: 0;
    padding: 0;
}

/* Center the contents both horizontally and vertically */
body {
    display: flex;
    justify-content: center;
    flex-direction:column;
    align-items: center;
    min-height: 70vh;
    background-color: #f0f0f0; /* Optional: Set background color */
    font-family: "Helvetica Neue", Helvetica, sans-serif;
	letter-spacing: 0.7px
}


/* Optional: Add a container to wrap your content for better control */
.container {
    max-width: 66%; /* Adjust the maximum width of the container */
    text-align: left; /* Center text within the container */
}

/* Optional: Style your headings */
h1 {
    color: #333;
    margin-bottom: 20px;
}

h2 {
    color: #555;
}

/* Optional: Style your paragraphs */
p {
    color: #777;
    line-height: 1.6;
}

/* Optional: Style your links */
a {
    color: black; /* Set the link color to black */
    text-decoration: none; /* Remove the default underline */
    transition: color 0.6s, /* Add smooth transition effects */
}

a:hover {
    color: darkgreen; /* Set the link color to dark green on hover */
}

ul {
    list-style: none;
    text-align: left;
    padding-left: 0;
}

li::before {
    content: ">"; /* Use the > character as the bullet */
    margin-right: 15px; /* Add some space between > and the list item */
}

li {
    padding-top: 10px;
}

/* Optional: Style your buttons */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.button:hover {
    background-color: #0056b3;
}



/* CSS for the footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333; /* Set your preferred background color */
    color: #fff; /* Set the text color */
    padding: 10px;
    text-align: center; /* Center the text within the footer */
	font-family: "Roboto", sans-serif;
}

.footer-link {
    color: #fff; /* Set the link color to black */
    text-decoration: none; /* Remove the default underline */
    transition: color 0.6s, letter-spacing 0.9s; /* Add smooth transition effects */
    letter-spacing: 1px;
}

.footer-link:hover {
    color: #91C8E4; /* Set the link color to dark green on hover */
    letter-spacing: 2px;
    font-weight: none;
}
