@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

header, footer {
    background-color: #fff;
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e1e1e1;
}
/* 
nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    padding-left: 40px;
}

nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

nav a li {
    display: inline;
    margin: 0 10px;
}

nav a {
    text-decoration: none;
    color: #333;
} */

/* .nav-container {
    width: 100%;
    max-width: 1200px; /* This should be the same value as .container 
    margin: 0 auto;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
} */




nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* nav ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
} */

.burger-menu {
    display: none;
    cursor: pointer;
}

nav ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.nav-links ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.nav-links a li {
    display: inline;
    margin: 0 10px;
    
}

.nav-links a {
    text-decoration: none;
    color: #333;
    margin-right: 20px; /* Add margin right */
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
     padding: 10px; 
    margin: 0 auto;
    /* max-width: 100%; */
}

.left-column,
.right-column {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* padding: 40px; */
}

.left-column {
    padding:15px;
    flex: 1;
    order: 1;
}

.right-column {
    flex: 1;
    text-align: center;
    order: 2;
}

.right-column img {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    object-fit: cover;
}



img {
    max-width: 100%;
    height: auto;
}

footer {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e1e1e1;
    margin-top: 20px;
}

footer a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}

footer i {
    font-size: 24px;
}

h1, h2, p {
    margin-bottom: 20px;
}

h1 {
    font-size: 40px;
}

@media screen and (max-width: 600px) {
    .left-column {
        order: 2;
        flex-basis: 100%;
    }
    .right-column {
        order: 1;
        flex-basis: 100%;
    }
    
    /* Add the modified font-size for h1 */
    h1 {
        font-size: 28px;
    }
    
    /* Update the width and height of the image for mobile */
    .right-column img {
        width: 200px;
        height: 200px;
    }

    .burger-menu {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 60px; /* Add top offset */
        left: 0; /* Add left offset */
        background-color: #fff;
        width: 100%;
        padding: 20px 40px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links a li {
        margin: 5px 0;
    }


}

.tags {
    margin-bottom: 20px;
}

.tags span {
    display: inline-block;
    background-color: #eee;
    padding: 5px 10px;
    border-radius: 50px;
    margin-right: 10px;
}

.intro-text {
    color: #6CB4EE;
}

.intro-text span {
    color: inherit;
}

