
@font-face {
    font-family:"SweetPineapple";
    src: url("../Assets/Fonts/sweetpineapple-webfont.woff") format("woff"), 
    url("../Assets/Fonts/sweetpineapple-webfont.woff2") format("woff2")
}

@font-face {
    font-family: "Poppins";
    src: url("../Assets/Fonts/Poppins/Poppins-Light.ttf") format("ttf"),
    url("../Assets/Fonts/Poppins/Poppins-BoldItalic.ttf") format("ttf");
}

:root{
    --TipoLetra: "SweetPineapple";
    --TipoLetraP: "Poppins";
    --cursorJuego: url(../Assets/Cursores/BlueCGC.cur), auto;
    --cursorJuegoBlanco: url(../Assets/Cursores/WhiteCGC.cur), auto;
}

*{
    box-sizing: border-box;
    margin: 0;
}

body{
    background: #bdc3c7;  
    background: -webkit-linear-gradient(to right, #2c3e50, #bdc3c7); 
    background: linear-gradient(to right, #2c3e50, #bdc3c7);
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    cursor: var(--cursorJuego);
    
    
    
}

canvas{
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
   
}

#colissionCanvas{
    opacity: 0;
    
}