body {
    background: #fdf6f9;
    font-family: "Georgia", serif;
    margin: 0;
    padding: 0;
}

/* SIDEBAR */
.sidebar {
    width: 200px;
    background: #ffe6f2;
    border-right: 3px dashed #ffb6d9;
    padding: 20px;
    position: fixed;
    top: 0;
    bottom: 0;
}

.sidebar h2 {
    color: #d45a91;
    margin-top: 0;
}

.sidebar a {
    display: block;
    color: #b84f7f;
    text-decoration: none;
    margin: 8px 0;
}

.music-box {
    margin-top: 20px;
    padding: 10px;
    background: #fff0f7;
    border: 2px solid #ffcce1;
    border-radius: 10px;
}

.song {
    font-size: 14px;
    color: #d45a91;
}

/* STICKERS */
.stickers {
    margin-top: 20px;
    text-align: center;
}

.sticker {
    width: 60px;
    margin: 5px;
}

/* HEADER */
.header {
    margin-left: 200px;
    text-align: center;
    padding: 30px;
    background: #ffe6f2;
    border-bottom: 3px dashed #ffb6d9;
}

.header h1 {
    margin: 0;
    font-size: 40px;
    color: #d45a91;
}

.header p {
    margin: 5px 0 0;
    color: #b84f7f;
}

/* BLOG POSTS */
.container {
    width: 70%;
    max-width: 700px;
    margin: 30px auto;
    margin-left: 260px;
}

.post {
    background: #fff;
    padding: 20px;
    margin-bottom: 25px;
    border: 2px solid #ffcce1;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #ffb6d9;
    position: relative;
}

/* tape effect */
.post::before {
    content: "";
    width: 80px;
    height: 25px;
    background: #ffe0ec;
    position: absolute;
    top: -10px;
    left: 20px;
    transform: rotate(-5deg);
    border: 1px solid #ffb6d9;
}

.post h2 {
    margin-top: 0;
    color: #d45a91;
}

.date {
    font-size: 14px;
    color: #b84f7f;
    margin-bottom: 10px;
}

/* SPARKLES */
.post h2::after {
    content: " ✨";
    color: #ff9ad0;
   

}

}
