Veetube Arial Font

Changes the font on Veetube to Arial

/* ==UserStyle==
@name         Veetube Arial Font
@namespace    http://tampermonkey.net/
@version      1.0
@description  Changes the font on Veetube to Arial
@author       You
@license      MIT
@preprocessor stylus
@match        https://veetube.ct.ws/*
==/UserStyle== */

@-moz-document domain("veetube.ct.ws") {
    body, * {
        font-family: Arial, sans-serif !important;
    }
}