<!DOCTYPE html>
<html lang="en">
<head>
    <title>Panel temporarily unavailable</title>
</head>
<style>
    html,body{
        background: #f8f9fa;
        margin: 0px;
        padding: 0px;
        width: 100%;
        height: 100%;
        font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
    }
    .page-row{
        display: flex;
        flex-wrap: wrap;
        height: 100%;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .page-content{
        width: 100%;
        text-align: center;
    }
    .page-title{
        font-size: 60px;
        margin-top: -60px;
    }
    @media(max-width: 768px){
        .page-title{
            font-size: 45px;
            margin-top: -40px;
        }
    }
</style>
<body>
<div class="page-row">
    <div class="page-content">
        <div class="page-title">
            <p>Panel temporarily unavailable</p>
        </div>
    </div>
</div>
</body>
</html>