/* ****************Fonts*********************/
/* font-family: 'Cookie', cursive;          */
/* font-family: 'Poppins', sans-serif;      */
/* font-family: 'Varela Round', sans-serif; */
/* **************************************** */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: var(--poppins);
}
.flex{
    display: flex;
}
.justify-center{
    justify-content: center;
}
.item-center{
    align-items: center;
}
.flex-col{
    display: flex;
    flex-direction: column;
}
.left{  
    width: 50%;
}
.right{
    width: 50%;
}
.btn-gradient{
    background: linear-gradient(90deg,var(--gradient));
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.2s ease;
    color: white;
    z-index: -199;
}
.btn-gradient a{
    font-weight: 400 !important;
}
.btn-gradient:active{
    transform: scale(0.9);
}
.subtract{
    width: 100vw;
    top: 100vh;
    position: absolute;
    margin-top: 18vh;
}
body::-webkit-scrollbar{
    background: #000;
    width: 10px;
}
body::-webkit-scrollbar-thumb{
	background: gray;
    border-radius: 50px;
}
html{
    scroll-behavior: smooth;
}
/* Cursor */
.cursor{
    width:10px;
    height:10px;
    border-radius:50%;
    background: rgb(112, 112, 112);
    z-index: 9999;
}