html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #ffffff;
    background-color: #2e2e2e;
}

header {
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 3px 3px 5px;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

main {
    margin-top: 60px;
    padding: 20px;
}

/* Container for Portfolio and Projects sections */
.main-container {
    display: flex;
    justify-content: space-between;
}

#home, #projects {
    flex: 1;
    margin: 10px;
}

#projects {
    max-width: 600px;
    margin-right: 100px; /* Adjust as needed to fit your design */
}

section {
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 3px 3px 5px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
}

footer {
    text-align: center;
    padding: 1px;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    height: 4%;
    bottom: 0;
}

h1, h2 {
    text-align: center;
}

p {
    text-align: justify;
    margin-bottom: 1em; /* Add space between paragraphs */
    text-indent: 2em; /* Indent the start of each paragraph */
}

/* Profile picture and text styles */
.profile-container {
    display: flex;
    align-items: left;
    justify-content: center;
    gap: 20px;
}

.profile-picture {
    margin-left: -80px;
    width: 100px;
    height: 150px;
    border-radius: 10%;
    border: 2px solid #ffffff;
}

.profile-text {
    max-width: 600px;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the images horizontally */
    gap: 10px; /* Add space between images */
}

.image {
    width: 100px;
    height: 100px;
}
