{"html":"<!DOCTYPE html><html lang=\"en\"><head>\n<title>Account Suspended</title>\n<style>\n*{\n  transition: all 0.6s;\n}\n\nhtml {\n  height: 100%;\n}\n\nbody{\n  font-family: 'Lato', sans-serif;\n  color: #888;\n  margin: 0;\n}\n\n#main{\n  display: table;\n  width: 100%;\n  height: 100vh;\n  text-align: center;\n}\n\n.fof{\n  display: table-cell;\n  vertical-align: middle;\n}\n\n.fof h1{\n  font-size: 50px;\n  display: inline-block;\n  padding-right: 12px;\n  animation: type .5s alternate infinite;\n}\n\n@keyframes type{\n  from{box-shadow: inset -3px 0px 0px #888;}\n  to{box-shadow: inset -3px 0px 0px transparent;}\n}\n</style>\n\n</head>\n<body><div id=\"main\">\n  <div class=\"fof\">\n    <h1>Account Suspended</h1>\n    <h2>Please contact your hosting provider to correct issues causing your website to be offline.</h2>\n  </div>\n</div>\n</body></html>"}