
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

body {
    display: flex;
    flex-direction: column;
}


.container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    border-radius: 10px;
}


img {
    max-width: 100%;
    width: 300px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}


h1 {
    font-size: 2.5em;
    margin: 10px 0;
    color: #333;
}

.subtitle {
    font-family: 'Courier New', Courier, monospace;
    color: brown;
    font-size: 1.2em;
    margin-bottom: 20px;
}


.bio {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
    margin-bottom: 40px;
}


header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    width: 100%;
    position: sticky;
    top: 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.1em;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #f4f4f9; 
}


footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1); 
}


@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    .bio {
        font-size: 1em;
        padding: 0 10px;
    }

    img {
        width: 150px;
    }

    nav li {
        margin: 0 10px;
    }
}


.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
}


.project-list {
    list-style: none;
    padding: 0;
}

.project-list li {
    margin-bottom: 20px;
    font-size: 1.2em;
}

.project-list li a {
    text-decoration: none;
    color: #333;
    border: 1px solid #ccc;
    padding: 15px;
    display: block;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.project-list li a:hover {
    background-color: #e0e0e0;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Open+Sans:wght@400;700&display=swap');

html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5; 
    color: #333;
}


.container {
    flex-grow: 1;
    max-width: 1200px; 
    padding: 40px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05); 
    border-radius: 12px;
    margin: 40px auto;
}


header {
    background-color: #292b2c; 
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


nav a {
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #0056b3; 
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #007bff;
}


.project-list li a {
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-list li a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); 
}


footer {
    background-color: #292b2c;
    color: #fff;
    padding: 30px;
}


img {
    border-radius: 10px; 
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05); 
}


@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.8em;
    }

    .project-list li a {
        font-size: 1em;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;700&display=swap');


body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
}

a {
    text-decoration: none;
    color: #3498db;
}

a:hover {
    color: #2980b9;
}


.main-header {
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #3498db;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}


.navbar {
    position: absolute;
    top: 10px;
    right: 20px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}


.section {
    max-width: 1000px;
    margin: 2.5rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.section p {
    font-size: 1.1rem;
    color: #555;
}

.section:hover {
    transform: translateY(-5px);
}


.footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
}

.footer a {
    color: #3498db;
}

.footer a:hover {
    color: #2980b9;
}


@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }

    .navbar ul {
        flex-direction: column;
        gap: 1rem;
    }

    .section {
        padding: 1.5rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }
}

.secondary-projects-heading {
    font-size: 1.5em;
    margin-top: 30px;
    font-weight: bold;
    color: #444;
    text-align: center;
}

.secondary-project-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.secondary-project-button {
    text-decoration: none;
    color: #444;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 12px;
    display: block;
    border-radius: 8px;
    font-size: 1.1em;
    width: 70%;
    margin: 10px auto;
    transition: background-color 0.3s ease;
}

.secondary-project-button:hover {
    background-color: #e0e0e0;
}

.zoomable-image {
    width: 80%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.zoomable-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
