body{

font-family: 'Open Sans', sans-serif;

background-color:#f4f4f4;

margin:0;

}

header{

display:flex;

justify-content:space-between;

align-items:center;

padding:20px;

background-color:#003366;

color:white;

}
footer{

background-color:#0b3b6f;

color:white;

padding:20px;

text-align:center;

margin-top:50px;

font-size:14px;


}

.logo img{

height:60px;

}

nav ul{

list-style:none;

display:flex;

gap:20px;

}

nav a{

color:white;

text-decoration:none;

font-weight:600;

font-family:'Montserrat', sans-serif;

}

.description{

background:#e6e6e6;
padding:60px 20px;

}

.description-container{

display:flex;

align-items:center;

gap:40px;

max-width:1100px;

margin:auto;

}

.description-image img{

width:220px;

border-radius:10px;

}

.description-text{

max-width:600px;

}

.description-text h1{

font-size:40px;

margin-bottom:10px;

}

.skills-linkedin{

display:flex;

justify-content:space-between;

align-items:flex-start;

max-width:900px;

margin:40px auto;

gap:60px;

}

.skills-box{

flex:2;

}

.skills-list{

list-style:disc;

padding-left:20px;

}

.linkedin-box{

flex:1;
text-align:center;

}

.linkedin-btn{

padding:10px 18px;
background:#0077b5;

color:white;

border:none;

border-radius:5px;

cursor:pointer;

}

.linkedin-btn:hover{

background:#005582;

}
.projects{

padding:40px;

text-align:center;

}

.project-card{

width:300px;

margin:20px auto;

background:white;

padding:20px;

border-radius:8px;

box-shadow:0 4px 10px rgba(0,0,0,0.1);

}

.project-card img{

width:100%;

}

button{

margin-top:15px;

padding:10px 18px;

background:#007bff;

color:white;

border:none;

border-radius:5px;

cursor:pointer;


}

button:hover{

background:#0056b3;

}
@media (max-width: 768px){

.description-container{

flex-direction:column;

text-align:center;
}

.description-image img{
width:200px;
}

}

**Blog posts page styles.**
.blog-container {
    max-width: 900px;
    margin: 50px auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
}

.blog-image {
    display: block;
    width: 100%;
    max-width: 700px;
    margin: 30px auto;
    border-radius: 10px;
}

.video-wrapper {
    margin: 40px auto;
    max-width: 700px;
}
.video-wrapper iframe {
    width: 100%;
    border-radius: 10px;
}
.blog-content p {
    max-width: 700px;
    margin: 25px auto;
    text-align: left;
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 10px;
}

.blog-meta {
    text-align: center;
    color: gray;
    margin-bottom: 35px;
}

.blog-subtitle {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

body {
    background-color: #f4f6f8;
    font-family: 'Open Sans', sans-serif;
}
.source-credit {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .blog-container {
        padding: 20px;
        margin: 20px;
    }

    .blog-title {
        font-size: 1.8rem;
    }

    .blog-content p {
        font-size: 1rem;
    }
}
hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid #ddd;
}

