@font-face {
    font-family: FRegular;
    src: url('../font/regular.ttf');
}

@font-face {
    font-family: FMedium;
    src: url('../font/medium.ttf');
}

@font-face {
    font-family: FBlack;
    src: url('../font/black.ttf');
}

@font-face {
    font-family: FHeavy;
    src: url('../font/heavy.ttf');
}

::-webkit-selection {
    background-color: transparent;
    color: rgb( 255, 255, 255);
    text-shadow: 0.5px 0.5px rgb( 198, 90, 144), 1px 1px rgb( 198, 90, 144), 1.5px 1.5px rgb( 198, 90, 144), 2px 2px rgb( 198, 90, 144), 2.5px 2.5px rgb( 198, 90, 144);
}

::-moz-selection {
    background-color: transparent;
    color: rgb( 255, 255, 255);
    text-shadow: 0.5px 0.5px rgb( 198, 90, 144), 1px 1px rgb( 198, 90, 144), 1.5px 1.5px rgb( 198, 90, 144), 2px 2px rgb( 198, 90, 144), 2.5px 2.5px rgb( 198, 90, 144);
}

::selection {
    background-color: transparent;
    color: rgb( 255, 255, 255);
    text-shadow: 0.5px 0.5px rgb( 198, 90, 144), 1px 1px rgb( 198, 90, 144), 1.5px 1.5px rgb( 198, 90, 144), 2px 2px rgb( 198, 90, 144), 2.5px 2.5px rgb( 198, 90, 144);
}

* {
    cursor: none !important;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    /*-webkit-user-select: none;*/
    /* Safari 3.1+ */
    /*-moz-user-select: none;*/
    /* Firefox 2+ */
    /*-ms-user-select: none;*/
    /* IE 10+ */
    /*user-select: none;*/
    /* Standard syntax */
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    -webkit-user-select: text;
    /* Safari 3.1+ */
    -moz-user-select: text;
    /* Firefox 2+ */
    -ms-user-select: text;
    /* IE 10+ */
    user-select: text;
    /* Standard syntax */
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb( 35, 35, 35);
    overflow-x: hidden;
    cursor: none;
}

.bubblegum {
    position: fixed;
}

.cursor {
    display: none;
    position: fixed;
    width: 64px;
    height: 64px;
    background-repeat: no-repeat;
    background-size: 64px 64px;
    background-position: 0 0;
    -webkit-transform: translateX(1px) translateY(1px);
    -moz-transform: translateX(1px) translateY(1px);
    -o-transform: translateX(1px) translateY(1px);
    transform: translateX(1px) translateY(1px);
    z-index: 999;
}