body {
    margin: 0;
    font-family: "Comic Sans MS", Arial, sans-serif;
    background: linear-gradient(135deg, #aae5a3, #dda3e2);
    overflow-x: hidden;
}

.sidebar {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 140px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar img {
    width: 140px;
    height: 50px;
    image-rendering: crisp-edges;
    cursor: pointer;
}

.header {
    text-align: center;
    padding-top: 30px;
    margin-left: 180px;
}

.header img {
    width: 60%;
    max-width: 800px;
    background: transparent;
}

.divider {
    width: 100%;
    height: 4px;
    background: black;
    margin-top: 20px;
    margin-left: 160px;
}

.blog-card {
    margin: 40px auto;
    background: white;
    width: 70%;
    border: 5px solid black;
    padding: 30px;
    font-size: 22px;
    border-radius: 10px;
}

.blog-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.back-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    border: 5px solid #777;
    border-radius: 12px;
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    cursor: pointer;
}
