/* General Body Styling */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

/* Header Styling */
header {
    background-color: #282c34;
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: left;
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav a {
    color: #616161;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    text-transform: none;
    letter-spacing: 1px;
    font-size: 16px;
}

nav a:hover {
    color: white;
    background-color: #035166;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}



/* Content Container */
.bckg {
    /* max-width: 900px; */
    margin: 40px auto;
    background: white;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    align-items: center;
    /* width: 960px; */
}

.bckg .container {
    max-width: 960px;
    margin: 0 auto; /* this enables self centering*/
}

.bckg .container .text .project a {
    font-size: 16px;
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.bckg .container .text a:hover {
    text-decoration: underline;
}

/* h2 {
    font-size: 28px;
    color: #282c34;
    margin-bottom: 20px;
} */

.bckg .container .text .project {
    margin-top: 16px;
}

.bckg .container .text .project .project_title {
    display: block;
    margin-bottom: 16px;
    pointer-events: none; /* deactivate this to reactivate links */
    /* width: 100%; */
}
/* .project .readmore a {
    /* margin-top: 16px;
    color:#a8d3df
} */

.bckg .container .text .project img {
    display: inline-block;
    width: 20%;
    border-radius: 10%;
}

.bckg .container .text .project p {
    display: inline-block;
    width: 70%;
    vertical-align: top;
    margin-left: 16px;
}


p {
    line-height: 1.6;
    font-size: 16px;
    color: #555;
}

/* About Section */
.about {
    display: flex;
    align-items: center;
}

.about img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin-right: 20px;
    border: 3px solid #035166;
}

.container .text {
    /* margin-left: 2rem;
    margin-right: 60em; */

    text-align: justify;
    align-items: center;
}
/* .about  */

/* Links Section */
/* .links {
    margin-left: 1rem;
    align-items: right;
} */

/* .links a {
    margin-right: 1rem;
    color: #616161;
    text-decoration: none;
    /* font-weight: bold; */
    font-size: 16px;
} */

.links a:hover {
    text-decoration: underline;
}

/* Footer Styling */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #ffffff;
    color: white;
    font-size: 14px;
}

footer p {
    margin: 0;
}

/* Blog Post List */
ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 10px 0;
}

/* li a {
    color: #282c34;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

li a:hover {
    color: #61dafb;
    text-decoration: underline;
} */

.publication_link {
    font-size: 16px;
    color: #555;
    text-decoration: none;
    /* font-weight: bold; */
}

