body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
}

nav {
    background: #e3f1a0;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 120px;
}

ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

ul li a:hover {
    color: #d1d1d1;
}

.nav-btn {
    background: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn img {
    width: 15px;
}

.container {
    text-align: center;
    margin-top: 50px;
}

h1, h2 {
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px;
    margin-top: 30px;
}

.blog-card {
    background: #a5e99d;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(185, 204, 203, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
}