
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0a0a0a;
    color: white;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0a0a0a;
}
.logo img {
    height: 60px;
    margin-top: 20px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li a, nav > a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}
.blog-container {
    padding: 40px 144px;
}
.title {
    margin-bottom: 40px;
}
.featured-post {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.featured-post img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}
.post-info {
    max-width: 600px;
}
.post-info h2 {
    margin-top: 0;
}
.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #00bfff;
    text-decoration: none;
}
.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.blog-grid article {
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 8px;
    width: calc(33.333% - 13.33px);
    min-width: 250px;
}
.blog-grid article img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
}
.blog-grid article h3 {
    margin-top: 0;
}
.blog-grid article a {
    text-decoration: none;
    color: white;
}
nav ul li a:visited,
nav > a:visited,
.blog-grid article a:visited,
.read-more:visited {
    color: white;
}

