* {
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
}

body {
    background: #f3d2d8;
    color: #6a3742;
    background-size: 40px 40px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #e9b8c1;
    position: sticky;
    top: 0;
}

.topbar input {
    width: 40%;
    padding: 8px;
    border-radius: 20px;
    border: none;
}

.top-icons span {
    margin-left: 15px;
    cursor: pointer;
}

.container {
    display: grid;
    grid-template-columns: 220px 1fr 250px;
    padding: 15px;
    gap: 15px;
    align-items: start;
}

.sidebar {
    background: #ebaeb9;
    padding: 15px;
    border-radius: 10px;
}

.sidebar li {
    padding: 10px;
    border-left: 2px solid transparent;
    transition: 0.3s;
}

.sidebar li:hover {
    border-left: 2px solid;
    color: pink;
    cursor: pointer;
}

.feed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.post-bar {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: #ddb5a5;
    padding: 10px 20px;
    border-radius: 25px;
}

.post-bar input {
    flex: 1;
    padding: 8px;
    border-radius: 20px;
    border: none;
}

.storycards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.storycards {
    background: #ebaeb9;
    border-radius: 14px;
    gap: 12px;
    transition: 0.3s;
    border: 1px solid;
    transition: 0.3s;
    height: 70;
    display: flex;
    align-items: center;
}

.storycard:hover {
    transform: translatey(-4px);
    box-shadow: 0 10px 30px rgba(117, 30, 78, 0.5);
}

.storycard-img {
    width: 50%;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.storycard span {
    font-size: 14px;
}

.actions span {
    color: pink;
    font-size: 13px;
    margin-top: 10px;
    display: flex;
    justify-content: space-around;
}

.right-panel {
    background: #e0b2b2;
    padding: 15px;
    border-radius: 10px;
}

@media (max-width: 768px) {

}