﻿InactivityWarning {
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.15s;
    z-index: 20;
    color: white;
    font-weight: bold;
    backdrop-filter: blur(2);

    .container {
        width: 120%;
        height: 280px;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: column;
        background-color: rgba(0,0,0,0.9);
        border-image: url("textures/ui/construction_border.png") 16 16 repeat;
        border-width: 10px;
        border-right: none;
        border-left: none;
    }

    .heading {
        font-size: 40px;
        margin-top: 20px;
    }

    .text {
        font-size: 140px;
    }

    &.visible {
        opacity: 1;
    }
}
