';
        echo '';
    }
    public function style() {
        $scss = new ScssPhp\ScssPhp\Compiler();
        $file = __DIR__."/../../assets/css/player.scss";
        echo $scss->compile(file_get_contents($file));
echo "
main {
    align-items: center;
    justify-content: center;
    border-top: 0px;
}
main section#player {
    display: flex;
    justify-content: center;
}
main section#player .video-js {
    width: 75vmin !important;
}
";
    }
    public function content() {
echo '
';
    }
}
  
?>