@charset "UTF-8";

/*
Theme Name: Not Authorized
Description: Not Authorized Theme
Requires at least: 5.3
Tested up to: 6.0
Requires PHP: 5.6
Version: 1.0
Text Domain: na
*/

body {
    background-color: slategray;
    margin:0;
    padding:0;
    display:flex;
}

#main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

#errorIcon {
    background: red;
    font-size: 3rem;
    font-family: monospace;
    width: 5rem;
    height: 5rem;
    border-radius: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: white;
    margin-bottom:1rem;
}

#errorMessage {
    font-family: monospace;
    color: white;
    font-size: 1.3rem;
}