@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;

}

html {
    overflow-x: hidden;
}


.whatsapp-icon i {
    font-size: 3vmax;
    position: fixed;
    bottom: 6%;
    left: 2%;
    background-color: rgb(42, 164, 42);
    color: white;
    padding: 0.7%;
    border-radius: 50%;
    z-index: 9997;
}

.banner{
    margin-bottom: 30px;
    background-image: url(images/thread.jpg);
    background-size: contain;
    background-attachment: fixed;
    height: 200px;
}

.headline_banner{
    color: rgb(255, 255, 255);
    font-size: 6vmax;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #0000005a;
}


.first_blog{
    width: 80%;
    margin: 0 auto;
}


/* FOR MOBILE DEVICES */

@media (max-width:450px) {

    .whatsapp-icon i {
        font-size: 5vmax;
    }


}