 body {
     font-family: Arial, sans-serif;
     display: flex;
     justify-content: center;
     align-items: center;
     height: 100vh;
     margin: 0;
     background-color: #f4f4f9;
 }

 .message {
     text-align: center;
     padding: 20px;
     border-radius: 8px;
     background-color: white;
     box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
 }

 .message a {
     text-align: center;
     padding: 10px 30px;
     display: inline-block;
     border-radius: 8px;
     color: #fff;
     text-decoration: none;
     font-size: 13px;
     background-color: rgb(11, 111, 204);

 }

 .message a:hover {
     background-color: rgb(14, 81, 145);

 }

 .spinner {
     border: 4px solid rgba(0, 0, 0, 0.1);
     width: 36px;
     height: 36px;
     border-radius: 50%;
     border-left-color: #09f;
     animation: spin 1s linear infinite;
     margin: 0 auto 15px;
 }


 .iconfont {
     display: none !important;
 }

 canvas>div {
     height: 48px !important;
 }

 .easyplayer-controls-code-wrap {
     display: none !important
 }

 .easyplayer-contextmenu-btn {
     display: none !important;
 }

 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
}