*
{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
}

body
{
    margin: 0;
    padding: 0;
    background-color: black;
    overflow: hidden;
}

.errorContainer
{
    width: 100vw;
    height: 100vh;
    background: linear-gradient(0deg, rgba(25,0,0,1) 0%, rgba(75,0,0,1) 35%, rgba(100,0,0,1) 100%); 
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    color: white;
}

.errorContainer *
{
    margin: 0.5rem;
}

.animatedText
{
    transition: 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    position: relative;
}

.animatedTFixed
{
    transition: 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    margin: 1rem;
    text-align: right;
}