
@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;
}

body{
    cursor: var(--cursorJuego);
    font-family: var(--TipoLetra);
    zoom: 80%;
    background: #E8CBC0;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #b662b2, #dab4dd);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #b662b2, #dab4dd); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.container{
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 600px;
    overflow: hidden;
}

.boton-container{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    width: 350px;
    top: 75px;
    right: 40%;
    left: 40%;
    
}

button{
    
    height: 40px;
    width: 150px;
    padding: 10px 20px;
    border-radius: 7px;
    border: 1px solid #b662b2;
    background-color: #b662b2;
    font-weight: 700;
    color: rgba(37, 12, 177, 0.9);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5);
    transition: 300ms ease-in-out;
    transition-property: box-shadow;
}



button:hover{
    cursor: var(--cursorJuegoBlanco);
    box-shadow: 1px 2px 6px 2px rgba(37, 12, 177, 0.9);
}

.title h1{
    font-size: 45px;
    text-align: center;
    color: rgba(37, 12, 177, 0.733);
    font-weight: 700;
    text-shadow: 1px 2px 6px rgba(0, 70, 98, 0.7);    
    margin-bottom: -60px;
}

#canvas1{
    position: relative;
    top: 50%;
    left:50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    border: 2px solid #b662b2;
    border-radius: 6px;
    box-shadow: 1px 2px 6px 2px rgba(0, 50, 0, 0.5);
    transition: 500ms ease-in-out;
    transition-property: box-shadow, border;
}

#canvas1:hover{
    box-shadow: 1px 0px 9px 1px rgba(240, 25, 250, 0.6);
    border: 2px solid transparent;
}
