/* styles.css */

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 20px;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    margin: 0; /* Remove the default margin */
}

.experience {
    font-size: 18px;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}

.experience ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Centered navigation bar */
.navbar {
    display: flex;
    justify-content: center;
    background-color: #333;
    /* Add other styling properties as needed */
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 14px 16px;
    font-size: 16px;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.small-hr {
    width: 30%; /* Adjust as needed */
    margin: 0 auto; /* Center horizontally */
    border: none; /* Remove default border */
    border-top: 1px solid #333; /* Add a custom border */
    margin-top: 0.5em; /* Reduce the space between the word and the bar */
}