
html {
    margin: 0;
    padding: 0;
    height: 100%;    
    background-color: #1c1c1c;        
}

  body {
    position: absolute;
    left: 5px;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background-color: white; 
  }

.blackframe { 
    position: absolute;
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
    background-color: black;    
    border: 1px solid yellow;        
}

.menu {  
  vertical-align: top; 
  left: 20px;
  right: 20px;
  top: 20px;  
  width: 100%;
  height: 60px;
  background-color: black;
  /* border: 1px solid red;     */
}

.container { 
    vertical-align: top;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 80px;
    bottom: 20px;
    overflow-y: auto;

    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-template-rows: 50px 150px 250px 1fr;
    grid-gap: 10px 10px; 
    /* border: 1px solid greenyellow;   */
}

.watch {   
  grid-row: 1;
  grid-column-start: 3;
  grid-column-end: 4; 
  z-index: 1;
  color: whitesmoke;
  text-align: right;
}

.content{    
    padding: 8px; 
    color: white; 
    border: 1px solid black;
    background-color: #1c1c1c;  
}
