/* !!!!! Very important !!!!! Border Box -> http://lmgtfy.com/?q=border+box */
*, ::before, ::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    /*font-weight: bold;*/
    /*cursor:none;*/
}
body{
    background-color: #1d1f21;
    font-family: monospace;
    font-size: 16px;
    font-weight: normal;


}

.top-holder{
    position: relative;
    display:flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height:100vh;
    /*background-color: blue;*/
}

.picture-top-holder{
    position:absolute;
    /* background-color: green; */
    width:100px;
    height:100px;
}

.picture-holder{
    /* position:absolute; */
    /*background-color:green;*/
    width:100%;
    height:100%;
    overflow: hidden;
}

img{
    position: relative;
    z-index: 9;
}

table{
    /*border:1px solid white;*/
    border:none;
    table-layout: fixed;
    z-index: 99;
}

td{
    width:9px;
    height:20px;
    max-width: 9px;
    /*max-height:20px;*/
    /*background-color:blue;*/
    /*border:1px solid white;*/
    font-weight: normal;
}



.material-icons {
    display:flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 16px;  /* Preferred icon size */
    /*display: inline-block;*/
    /*line-height: 1;*/
    /*text-transform: none;*/
    /*letter-spacing: normal;*/
    /*word-wrap: normal;*/
    /*white-space: nowrap;*/
    /*direction: ltr;*/
}

.error-holder{
    z-index:999;
    position: absolute;
    text-align: center;
    /*height:100px;*/
    width:70%;
    padding-top:30px;
    padding-bottom: 30px;
    overflow-y: scroll;
    overflow-x: scroll;
    /*visibility: hidden;*/
}