/* 
CSS FOR STUDIO DISPLAY.  
THIS DISPLAY IS CODED FOR A HD 1080X1920 DISPLAY AND WILL
LOOK LIKE SHIT ON ANYTHING ELSE
FLUFFY WARNED YOU 
*/

body {
  background-color: black;
  margin: 10px 10px 10px 10px;
  padding: 0px;
  border: 0px;
}

.info {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font: normal bold 22px verdana, sans-serif;
  color: white;
  text-align: right;
}

.grid-container {
  display: grid;
  grid-template-columns: 611px max-content; /* VIDEO.JS CONTROLS THE VIDEO PLAYER WINDOW WIDTH / ADJUST FIRST VALUE TO ADJUST TO SCREEN WIDTH */
  grid-gap: 0px;
  padding: 0px;
  grid-template-areas:
    'header header'
    'news news'
    'now_playing video_player'
}

.header {
  grid-area: header;
  background-image: linear-gradient(black, #820000);
  height: 250px;
  border-width: 4px 4px 4px 4px;
  border-style: solid;
  border-color: red;
  position: relative;
}

.news {
  grid-area: news;
  background-color: #121212;
  height: 74px; /* ADJUST THIS HEIGHT TO FIT SCREEN HEIGHT */
  text-align: center;
  font: normal bold 30px verdana, sans-serif;
  color: white;
  position: relative;
  border-width: 0px 4px 0px 4px;
  border-style: solid;
  border-color: red;
}

.now_playing {
  grid-area: now_playing;
  background-color: #121212;
  border-width: 4px 0px 4px 4px;
  border-style: solid;
  border-color: red;
  position: relative;
}

.video_player {
  grid-area: video_player;
  background-color: black;
  border-width: 4px 4px 4px 4px;
  border-style: solid;
  border-color: red;
}

.center_text {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.news_text {
  font: normal bold 28px verdana, sans-serif;
  color: white;
}
  
.header_text {
  font: normal bold 62px verdana, sans-serif;
  color: blue;
}

.np_header {
  font: normal bold 32px verdana, sans-serif;
  color: red;
  margin-top: 10px;
  margin-bottom: 15px;
  text-align: center;
}

.np_img {
  text-align: center;
}

.bimg {
  border: 2px solid #cccccc;
}

.np_title {
  font: normal bold 32px verdana, sans-serif;
  color: white;
  margin-top: 15px;
  margin-left: 10px;
  margin-right: 10px;
  text-align: center;
}

.np_artist {
  font: normal bold 26px verdana, sans-serif;
  color: white;
  margin-top: 5px;
  margin-left: 10px;
  margin-right: 10px;
  text-align: center; 
}

.np_show {
  position: absolute;
  width: 100%;
  bottom: 0px;
  text-align: center;
  font: normal bold 26px verdana, sans-serif;
  color: red;
  background-color: #101010;
  border-width: 2px 0px 0px 0px;
  border-style: solid;
  border-color: red;
}

.np_show_text {
margin-bottom: 5px;
margin-top: 5px;
}



.fontwhite {
color: white;
}