@import url('https://fonts.googleapis.com/css2?family=Ms+Madi&family=Source+Sans+Pro&display=swap');

/* RESET */
*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}
a{
    cursor: url('pointer_pc_bg.png'),pointer;
    color:blueviolet;
    text-decoration: none;
}
body{
    min-height: 100%;
    width:100%;
    line-height: 2;
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(-130deg,
    rgb(17, 1, 24),rgb(15, 1, 1),black);
    position: relative;
    overflow-x: hidden;
    color:rgb(207, 157, 28);
}
@media screen and (min-width:250px) and (max-width:556px){
 
    a{
        cursor: url('pointer_mob.jpg'),pointer;
    }
    
}