/* General Settings */
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Import a custom font for the navigation bar */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

/* Navigation Bar */
nav {
    background-color: #1f1f1f;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Profile Section */
.profile {
    text-align: center;
    margin-top: 50px;
}

.profile-pic {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #e0e0e0;
}

.profile h1 {
    font-size: 32px;
    margin-top: 20px;
    color: #f5f5f5;
}

.profile .intro-text, .profile .middle-text, .profile .hobbies-text {
    font-size: 18px;
    margin: 20px auto;
    max-width: 700px;
    line-height: 1.6;
    color: #d3d3d3;
}
