*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    cursor: url('/assets/images/mc-sword.png'),auto;
  }


::-webkit-scrollbar{
    width: 7px;
}
    
::-webkit-scrollbar-thumb{
    background: #624bd3;
    border-radius: 10px;
}

::-moz-selection { /* Code for Firefox */
    background: #7964e4;
  }
  
::selection {
    background: #7964e4;
  }

.creative-container{
    background-color: #14121F;
    color: white;
}

.creative-container h1{
    text-align: center;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 10px 0 20px;
    color: #d8c395;
}

nav img{
    height: 25px;
    padding-bottom: 3px;
    cursor: pointer;
}

nav p{
    visibility: hidden;
}

nav h1{
    font-size: 25px;
}

.bottom-nav{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-left: 20px;
}

.bottom-nav p{
    font-size: 20px;
    cursor: pointer;
}


.content{
    height: auto;
}

.slash{
    margin: 0 5px;
}

.blogs{
    color: #6D57E0;
}

.bottom-nav p:hover{
    text-decoration: underline;
    /* color: rgb(230, 225, 225) !important; */
    /* text-decoration-color: #d8c395; */
}

/* initial display none to all content */

html{
    background-color: #14121F;
}

/* adjustments on initial render */

.sk-medium-publication-feed-container{
    background-color: #14121F;
}

.medium-publication-feed-root-container{
    display: none;
}

/* medium_publication_content{
    background-color: red !important;
} */

.mfp-close{
    color: white;
}

.content{
    padding: 30px;
}

.sk-read-more-btn button{
    display: none;
}

@media (max-width: 768px){

    nav img{
        align-items: center;
        padding-bottom: 0;
        height: 15px;
    }

    .m-none{
        display: none;
    }    

    .poemsContent{
        display: flex;
        flex-direction: column;
    }
}

.poemsContent{
    margin: 0px auto;
    columns: 4;
    column-gap: 20px;
}

.hidden{
    display: none;
}

.poem1{
    /* flex: 0 0 calc(25vw); */
    border: 2px solid #6D57E0;
    border-radius: 12px;
    padding: 15px;
    height: auto;
    width: auto;
    margin-bottom: 20px;
    break-inside: avoid;
}

.poem1 p{
    padding: 5px 0;
}

.author{
    text-align: right;
    color: #f7da9d;
}

.blogsContent , .quotesContent{
    /* height: 46vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.quotesContent{
    display: none;
}

.sub-blog{
    width: 80vw;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #624bd3;
}

.sub-blog a{
    display: flex;
    flex-direction: row;
}

.blog-image img{
    height: 150px;
    width: 20vw;
    border-radius: 10px;
}

.blog-date{
    display: flex;
    justify-content: end;
}

.blog-desc{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding-left: 20px;
}

.blog-title{
    color: #d8c395;
}

.sub-blog a{
    all: unset; 
    text-decoration: none; 
    color: inherit; 
    cursor: pointer;
    display: flex;
    flex-direction: row;
}

.blog-date{
    margin-top: 10px;
}

@media (max-width: 768px){
    .sub-blog a{
        flex-direction: column;
    }

    .blog-image{
        display: flex;
        justify-content: center;
    }

    .sub-blog{
        padding: 15px;
        cursor: pointer;
    }

    .blog-title h2{
        font-size: 15px;
        font-weight: 700;
        padding: 10px 0;
    }

    .blog-desc{
        padding-left: 0;
        margin-top: 10px;
    }

    .blog-sub-desc{
        font-size: 12px;
    }

    .blog-image img{
        width: 90vw;
    }


}

@media (max-width: 365px){
    .blog-image img {
        width: 70vw;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

    .blog-image img{
        width: auto;
    }
    .sub-blog a{
        flex-direction: row;
    }

    .blog-desc{
        padding-left: 20px;
    }
}