@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: Poppins, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    padding: 20px;
    max-width: 80%;
    margin: 0 auto;
    background-color: white;
}

section {
    margin: 20px 0;
}

section h2 {
    font-size: 1.5em;
    border-bottom: 1px solid #c9c9c9;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

section p, section ul {
    margin: 10px 0;
    line-height: 1.6;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li a {
    text-decoration: none;
    color: #076ace;
}

/* About Section */
.about-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-image {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.about-text {
    flex: 2;
    padding: 20px;
}

.profile-image {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}

.navbar {
    position: fixed;
    top: 0;
    margin: 0;
    padding: 0;
    width: 100%;

    display: flex;
    justify-content: center;
    background-color: black;
    list-style-type: none;

    z-index: 2;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
}

.navbar a:hover {
    background-color: #575757;
    text-decoration: none;
    color: white;
}

/* Education Section */
#education {
    margin: 20px 0;
}

#education table {
    width: 100%;
}

#education th, #education td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

#education th {
    background-color: rgb(155, 156, 155);
}

#projects {
    margin: 20px 0;
}

.project {
    margin-bottom: 20px;
}

.project h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.project h3 span {
    font-weight: normal;
    font-size: 0.9em;
    color: #777;
}

.project ul {
    list-style-type: disc;
    padding-left: 20px;
}

.project ul li {
    margin-bottom: 5px;
}