* {
    margin: 0px;
}

body {
    background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
    padding-bottom: 50px;
}

.background-blobs {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 20% 30%, rgb(8, 255, 8), transparent 40%),
        radial-gradient(circle at 80% 70%, rgb(0, 156, 0), transparent 50%);
    filter: blur(80px);
}

.dark_mode {
    background-color: black;
    color: white;
    filter: brightness(200%) !important;
}

.dark_pre {
    background-color: black !important;
    color: white !important;
}

.hide_lines {
    display: none !important;
}

/* .navbar{
    background-color: #e41b66;
} */
.right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row;
}

.item>* {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
}

.middle-part {
    margin: 30px auto;
    width: 85%;
    border-radius: 8px;
    background-color: #fff;
}

.title-section {
    padding: 20px 0 0 20px;
}

.short-section {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: flex-start;
}

.title {
    font-size: 35px;
}

.description-section {
    margin-left: 50px;
    margin-right: 50px;
    padding: 20px;
    font-style: normal;
    font-family: Georgia, 'Times New Roman', Times, serif;
    letter-spacing: 1px;
    line-height: 2;
}

.tags {
    margin-left: 50px;
    margin-right: 50px;
    padding: 20px;
}

.options {
    background-color: black;
    padding: 20px;
    gap: 20px;
    color: white;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-start;
}

.code {
    background: #f5f5f5;
    overflow: auto;
}

.comment-section {
    padding: 20px;
}

.increase {
    color: white;
}

.dark {
    background-color: black;
}

@media screen and (min-width>=1024px) {
    .title-section {
        margin-left: 50px;
        padding: 20px;
    }
}

/* bookmark related icons */
.bookmark {
    margin-right: 20px;
    transition: all 0.5s ease-in-out;
    opacity: 0.5;
    cursor: pointer;
    position: relative;
}

.bookmark svg {
    height: auto;
    width: 50px;
}

.bookmark.add {
    fill: green;
    color: green;
    opacity: 1;
}

.bookmark.remove {
    opacity: 1;
    color: red;
    fill: red;
}

.bookmark .tooltip {
    position: absolute;
    display: none;
    min-width: max-content;
    transform: translate(-50%, -100%);
    top: 0;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.bookmark .tooltip.show {
    display: block;
}

