@charset "UTF-8";

body::before {
    content: 'Service Suspended';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #f8f8f8c2;
    backdrop-filter: blur(7px);
    color: red;
    font-size: clamp(40px, 3.75vw, 72px);
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}