body {
    background-color: #e2e8f0;
}

.container {
    margin-top: 2vh;
}

.post {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);    
}

.post h2 {
    font-size: 22px;
    color: #333;
}

.post .date {
    font-size: 14px;
    color: gray;
}

.sidebar {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar h3 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    text-decoration: none;
    color: #0073e6;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }
}
