error page

by Andrey Izman

HTML

<div style="display: table; position: absolute; height: 100%; width: 100%;">
<div style="display: table-cell; vertical-align: middle; padding: 0 40px;">
<div style="margin-left: auto; margin-right: auto; width: 520px;">
<div style="float:left; width:200px; text-align: center; padding-right: 20px;">
<span class="error_code">429</span>
<span class="error_description">Too Many Requests</span>
</div>
<div style="float:left; width:300px;">
<span class="error_brief">В доступі відмовлено</span>
<span class="error_detail">Зафіксована зловмисна активність з вашого комп’ютера або мережі</span>
<br>
<input type="button" value="Як це виправити?" class="help_button" onclick="toggleHelp()">
</div>
<div style="clear:both"></div>
<div id="fix_details">
Якщо Ви адміністратор сайту, виправити цю помилку допоможе стаття
<a href="https://www.ukraine.com.ua/wiki/hosting/errors/429/">Помилка 429 Too Many Requests</a> в нашій довідці.
</div>
</div>
</div>
</div>

CSS

body {
            background-color: #f1f4f5;
            color: #37474f;
            line-height: 1.4;
            font-family: 'Open Sans', sans-serif;
            margin: 0;
            padding: 0;
            }
        .error_code {
            display: block;
            font-size: 92px;
            font-weight: 700;
            margin-top: -25px;
            }
        .error_brief {
            display: block;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            }
        .help_button, .fix_button {
            background-color: #399bff;
            color: #fff;
            margin-top: 15px;
            font-size: 14px;
            padding: 7px 20px 7px 20px;
            border: none;
            border-radius: 3px;
            vertical-align: middle;
            cursor: pointer;
            }
        .fix_button {
            background-color: #38ad41;
            }
        #fix_details {
            margin-top: 40px;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0.3s, opacity 0.3s linear;
            }