@font-face {
    font-family: 'Arimo';
    font-style: normal;
    font-weight: 400;
    src: url(../font/Arimo-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Arimo';
    font-style: normal;
    font-weight: 700;
    src: url(../font/Arimo-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Arimo';
    font-style: italic;
    font-weight: 400;
    src: url(../font/Arimo-Italic.ttf) format('truetype');
}

@font-face {
    font-family: 'Arimo';
    font-style: italic;
    font-weight: 700;
    src: url(../font/Arimo-BoldItalic.ttf) format('truetype');
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: 'Arimo', sans-serif;
    color: #000000;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: none;    
}

.content {
    padding: 60px;
}

.content img {
    width: 150px;
    margin-bottom: 25px;
}

.status-block {
    box-shadow: 4px 3px 17px -2px rgba(0,0,0,0.75);
    -webkit-box-shadow: 4px 3px 17px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 4px 3px 17px -2px rgba(0,0,0,0.75);
    padding: 40px;
}

.status-block p {
    text-align: center;    
    line-height: 25px;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-block p span {
    margin-left: 10px;
    color: #302c2c;
}

.status-block p::before {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 50%;
    background-color: #758576;
    margin-right: 15px;
}

.status-block p.operational span {
    color: #0fdb19;
}

.status-block p.operational::before {
    background-color: #0fdb19;
}

.status-block p.not-operational span {
    color: #db0f0f;
}

.status-block p.not-operational::before {
    background-color: #db0f0f;
}

@media (max-width: 800px) {
    body {
        align-items: flex-start;
    }

    .content {
        padding: 40px 20px;
        width: 100%;
    }

    .content img {
        width: 140px;
    }

    .status-block {
        padding: 15px;
    }

    .status-block p {
        font-size: 16px;
    }

    .status-block p::before {
        margin-right: 10px;
    }

    .status-block p span {
        margin-left: 5px;
    }
}
