*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{

    text-decoration: none;

    color: inherit;

}

body{
    background-color: #0B0B0B;
    color: white;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
/* =========================================
   WHATSAPP BUTTON
========================================= */

.whatsapp_button{
    position: fixed;

    bottom: 30px;
    right: 30px;

    width: 65px;
    height: 65px;

    background-color: #25D366;

    color: white;

    border-radius: 50%;

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 30px;

    text-decoration: none;

    box-shadow: 0 10px 25px rgba(0,0,0,0.3);

    z-index: 1000;

    transition: 0.3s;
}

/* HOVER */
.whatsapp_button:hover{
    transform: scale(1.1);
}