/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 29.05.2023, 00:06:06
    Author     : stefan
*/
#overlay {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 200000;
    cursor: pointer;
}

#text{

    padding: 16px;
    background-color: white;
     border-style: solid; 
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 15px;
    color: black;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}

