* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    width: 100%;
}

#errorWrapper {
    background-color: black;
    color: red;
    display: none;
    height: 100%;
    text-align: center;
    width: 100%;
}

#errorWrapper>div {
    display: table;
    height: 50%;
    width: 100%;
}

#errorText {
    display: table-cell;
    font-size: 10vh;
    vertical-align: bottom;
}