/* =======   It's going to be fun - I wrote this sitting in a plastic chair in Liberia   --- It's going to be awesome   ---   ======= */
/* =======   Insecticide carriers are not welcomed   ======= */
/* =======   Too many bugssssss   ======= */
/* =======   HopeRepublic   ======= */
*{
    font-family: 'Poppins', sans-serif;
    transition: all .3s linear;  /* Add something unique here */
    scroll-behavior: smooth;
    box-sizing: border-box !important;
}



.topH{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-height: 400px;
    height: 400px;
    background-image: url(/Media/Images/Design\ pattern\ with\ emojis.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px;
}
.topH .topHumor{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: rgba(10, 14, 15, 0.88);
    align-items: center;
    justify-content: center;
}

/* ====   Slider Quotes   ==== */
.topH .topHumor .slideHumor{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 20px;
}
.topH .topHumor .slideHumor .quotesH{
    display: none;
    flex-direction: column;
    color: #f5deb3 !important;
    width: 85%;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
}
.topH .topHumor .slideHumor .quotesH .words{
    font-size: 150%;
    overflow: hidden;
}
.topH .topHumor .slideHumor .quotesH .author{
    font-size: 20px;
    border-top: 4px solid #000;
}
.topH .topHumor .slideHumor .quotesH.active{
    display: flex;
    overflow: hidden;
}
.topH .topHumor .ssmedia{
    display: flex;
    position: absolute;
    bottom: 20px;
    right: 50px;
    gap: 10px;
}
.topH .topHumor .ssmedia a{
    display: flex;
    color: #fff;
    padding: 8px;
    border-radius: 50px;
    background-color: #000;
}
.topH .topHumor .ssmedia .fa-brands{
    font-size: 26px;
}
.hbolder{
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.hbolder .words{
    display: flex;
    font-size: 150%;
    color: #f5deb3;
    /* border-radius: 10%; */
}
.hbolder .otherPagesLinks{
    display: flex;
    margin: 10px 0;
    padding: 10px;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.hbolder .otherPagesLinks a{
    display: flex;
    color: #f5deb3;
    border-color: #000;
    border: 2px solid #f5deb3;
    padding: 10px 20px;
    align-items: center;
}
.hbolder .otherPagesLinks a.fa-solid{
    display: flex;
}
.hbolder .otherPagesLinks a:hover{
    background-color: #f5deb3;
    color: #000;
}
.humorFilter{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 10px;
    padding: 20px 0;
}
.humorFilter .filters{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.humorFilter .bolder{
    font-size: 20px;
    color: #000;
}
.humorFilter .filter_link{
    display: flex;
    font-size: inherit;
    color: #000;
    background-color: antiquewhite;
    padding: 5px 20px;
    border: 2px solid #000;
    align-items: center;
    gap: 10px;
}
.humorFilter .filter_link:hover{
    background-color: #e88;
}
.humorFilter .filter_link .fa-solid{
    color: #000;
}
.humorFilter .adult_link{
    background-color: #000;
    color: #333;
}
.humorFilter .adult_link:hover{
    color: #000;
    background-color: #f00;
}
.humor{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 100%;
    align-items: center;
    justify-content: center;
    border-top: 4px solid #000;
}
.humor .secIntro{
    display: flex;
    flex-direction: column;
    border-bottom: 4px solid #000;
    padding: 20px 10px;
    box-shadow: rgba(17, 13, 13, 0.85) 0 0 5px;
}
.humor .secIntro .lgwords{
    font-size: 24px;
}





/* =======   Humor content here   ======= */



.mainContainer{
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}
.mainContainer .placeInside{
    display: flex;
    flex-direction: column;
    width: 28%;
    color: #000;
    padding: 10px 0;
}
.mainContainer .general_jokes{
    width: 40%;
}
.mainContainer .content article{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
}


.mainContainer .content article .humor:nth-child(even){
    background-color: #f1ebe1
}





/* =======   Media Quries   ======= */
@media (max-width: 1400px){
    .mainContainer{
        gap: 10px;
    }
    .mainContainer .placeInside{
        width: 22%;
        padding: 10px 0;
    }
    .mainContainer .content{
        width: 50%;
    }
}
@media (max-width: 1100px){
    .mainContainer .content{
        width: 50%;
    }
    .humorFilter{
        gap: 10px;
        margin: 10px 0;
    }
    .humorFilter .filter_link{
        gap: 5px;
    }
}
@media (max-width: 700px){
    .hbolder{
        padding: 30px 10px;
    }
    .hbolder h1{
        font-size: 30px !important;
    }
    .hbolder .words{
        margin-top: 20px;
        font-size: 18px;
    }
    .hbolder .otherPagesLinks{
        margin-top: 20px;
    }
    .topH .topHumor .ssmedia{
        bottom: 10px;
        right: auto;
        gap: 10px;
    }
    .hbolder .otherPagesLinks a{
        padding: 6px 30px;
    }
    .topH .topHumor .ssmedia .fa-brands{
        font-size: 20px;
    }
    .mainContainer .placeInside{
        width: auto;
    }
    .humorFilter{
        display: flex;
        flex-direction: column;
        border-bottom: 2px solid #000;
    }
    .humorFilter .filter_link{
        width: 50%;
        align-items: center;
        justify-content: center;
    }

}
@media (max-width: 500px){
    .topH .topHumor .slideHumor .quotesH .words{
        font-size: 20px !important;
    }
    .mainContainer .content{
        width: 80%;
    }
}
@media (max-width: 400px){
    .mainContainer .content{
        width: 85%;
    }
    .hbolder h1{
        font-size: 24px !important;
    }
}
