// ✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦
//     Genral Styling
// ✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦✦
*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    color: #000;
    // ------------  [poppins]  ------------
    font-family: 'Poppins', sans-serif;
}
a{
    font-family: 'Poppins', sans-serif !important;

}

h5{

    font-family: 'Roboto Mono', monospace;
}
html {
    font-size: 62.5% !important;
}

a {
    font-family: 'Proxima Nova';


}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    cursor: pointer;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
}

input {
    border: none;
    outline: none;
}