* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  --content_width: 1200px;
  /* var(--content_width); constant to set with of content*/
  background: #151515;
  padding: 0;
  margin: 0;
}

 
p {
  margin: 20px 20px 20px 0;
}

p,
li {
  font-family: sans-serif;
  color: #765;
  max-width: 700px;
}

li {
  color: #886;
  margin: 4px;
}

li span {
  color: #765;
}


.line_absolute {
  position: absolute;
  left: 0px;
  right: 0px;
  border-top: 1px solid rgb(136, 136, 102);
}

.line {
  border-top: 1px solid rgb(136, 136, 102);
  width: 100%;
}

.side_padding {
  padding-left: 20px;
  padding-right: 20px;
}

.space5 {
  height: 5px;
}

.space10 {
  height: 10px;
}

.space20 {
  height: 20px;
}

.space30 {
  height: 30px;
}

.spaceVH {
  height: 100vh;
}

.text_upper {
  text-transform: uppercase;
}

.box_shadow {
  box-shadow: 2px 0 20px rgba(0, 0, 0, .5);
}


/************************************************************
/* FONTS
*/
h1,
h3 {
  font-family: sans-serif;
  color: rgb(136, 136, 102);
  text-shadow: 0 0 10px rgba(128, 128, 96, .6);
}

.fontDarkGreenBig {
  font-family: sans-serif;
  font-size: 50px;
  font-weight: bold;
  color: rgb(136, 136, 102);
  text-shadow: 0 0 10px rgba(128, 128, 96, .6);
}

.fontDarkGreenSmall {
  font-family: sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: rgb(136, 136, 102);
  text-shadow: 0 0 10px rgba(128, 128, 96, .6);
}

.fontDarkGreen19b {
  font-family: sans-serif;
  font-size: 19px;
  font-weight: bold;
  color: rgb(136, 136, 102);
  text-shadow: 0 0 10px rgba(128, 128, 96, .6);
}

.fontDarkGreen14 {
  font-family: sans-serif;
  font-size: 14px;
  color: rgb(136, 136, 102);
  text-shadow: 0 0 10px rgba(128, 128, 96, .6);
}

.fontBrownBig {
  font-family: sans-serif;
  font-size: 20px;
  color: #765;
  text-shadow: 0px 0px 4px rgb(10, 10, 10);
}

.fontBrownSmall {
  font-family: sans-serif;
  font-size: 15px;
  color: #765;
  text-shadow: 0px 0px 4px rgba(10, 10, 10);
}

.fontBrown16 {
  font-family: sans-serif;
  font-size: 16px;
  color: #765;
  text-shadow: 0px 0px 4px rgba(10, 10, 10);
}

.fontWhite14 {
  font-size: 14px;
  font-family: Open Sans, Arial, Helvetica, sans-serif;
  color: #cacaca;
  text-shadow: 0 0 1px transparent, 0 1px 2px rgba(0, 0, 0, .8);
}

.fontWhite20 {
  font-size: 20px;
  font-family: Open Sans, Arial, Helvetica, sans-serif;
  color: #cacaca;
  text-shadow: 0 0 1px transparent, 0 1px 2px rgba(0, 0, 0, .8);
}

.fontYellow16 {
  font-family: Open Sans, Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: rgb(248, 183, 0);
  text-shadow: 0px 0px 10px rgba(0, 0, 0);
}

.fontOrangeLink {
  font-family: Open Sans, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: normal;
  text-decoration-style: none;
  color: rgb(129, 86, 0);
  text-shadow: 0px 0px 10px rgba(0, 0, 0);
}

/************************************************************
/* Common style for images and video thumbnails 
*/
.imagebox {
  position: relative;
  width: 100%;
  border-color: rgb(68, 68, 51);
  border-style: solid;
  border-width: 1px;
}

.imagebox:hover {
  border-color: rgb(129, 86, 0);
  cursor: pointer;
}

.imagebox .thumbnail {
  display: block;
  width: 100%;
}

.imagebox .play_icon {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.5;

  display: flex;
  justify-content: center;
  align-items: center;
}

.imagebox .play_icon img {
  width: 50%;
  height: 50%;
  max-width: 100px;
  max-height: 100px;
}

.imagebox .play_icon:hover {
  opacity: 0.8;
}

.imagebox .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: flex-end;
}

.imagebox .color_background {
  background-color: rgba(0, 0, 0, .9);
}

.imagebox .text {
  width: 100%;
  padding: 10px;
}

/************************************************************
/* Common containers, background image, side shadows
*/
.container {
  position: relative;
}

.center_container {
  position: relative;
  max-width: var(--content_width);
  margin: 0 auto;
}

.bg {
  position: fixed;
  background: url("../images/bg1.jpg");
  background-size: cover;
  opacity: .05;
  width: 100%;
  height: 100%;
}

/*
.bg-image {
  background: url("images/bg1.jpg");
  background-size: cover;
}
*/

.shadow-left {
  position: absolute;
  height: 100%;
  left: 0;
  width: 20%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.shadow-right {
  position: absolute;
  height: 100%;
  right: 0;
  width: 20%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.video_plane {
  position: relative;
}

/************************************************************
/* BACKGROUND VIDEO
*/
.background_video_container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.background_video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: auto;
  width: auto;
  min-height: 100%;
  min-width: 100%;
}

/************************************************************
/* HEADER
*/
.header_container {
  position: relative;
}

.header_container .titel {
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: sans-serif;
  font-size: 35px;
  font-weight: bold;
  /*color: rgb(136, 136, 102);*/
  color: rgb(170, 170, 127);
  text-shadow: 0 0 10px rgba(128, 128, 96, .6);
  }
  
/************************************************************
/* MENU
*/
.menu_container {
  position: relative;
  width: 100%;
}

.menu_container .menu_bar {
  position: relative;
  width: 100%;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 10px;
  padding-right: 0px;
}

.menu_container .menu_bar_right {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 50vw;
}

.menu_container .menu_bar_background {
  border-radius: 5px 0 0 5px;
  border-bottom: 1px solid rgba(0, 0, 0, .6);
  border-top: 1px solid rgba(255, 255, 255, .2);
  background-image: linear-gradient(to bottom, rgba(68, 68, 68, 1), rgba(41, 41, 41, 1));
}

.menu_container .menu_bar_buttons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.menu_container .menu_bar_buttons a {
  margin: 2px 4px;
  padding: 8px 12px;
  /* transparent border for not jumping when hover */
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 5px;
  font-family: sans-serif;
  text-decoration: none;
  text-shadow: 0 0 15px rgba(128, 128, 96, 0.8);
  color: rgb(136, 136, 102);
}

.menu_container .menu_bar_buttons a:hover,
.menu_container .menu_bar_buttons a.highlight {
  background: #2b2b2b;
  border: 1px solid #393939;
  box-shadow: inset 0 5px 10px #111;
}

.menu_container .dr-deviant-image {
  position: absolute;
  width: 180px;
  height: 180px;
  top: calc(50% - 90px);
  right: 0px;
  background: url("../images/drdeviant.jpg");
  background-size: contain;
  border-radius: 50%;
  border: 2px solid #886;
  box-shadow: 2px 0 20px rgba(0, 0, 0, .4);
  z-index: 1;
}

/************************************************************
/* Headline, text and subscribe/download buttons
*/
.headline_container {
  position: relative;
  display: flex;
  min-height: 60vh;
  align-items: center;
}

.headline_container .text {
  max-width: 700px;
}

.headline_container .text a {
  text-decoration: none;
}

.headline_container .text a:hover {
  text-decoration: underline;
}

.headline_container .buttons {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  /*background-color: rgba(233, 168, 30, 0.5);*/
}

.headline_container .buttons a {
  text-decoration: none;
}

.headline_container .button {
  padding-left: 0px;
  padding-top: 10px;
  padding-right: 20px;
}

.headline_container .subscribe_button {
  background-color: rgba(159, 22, 0, .6);
  outline-color: rgb(0, 0, 0);
  outline-style: solid;
  outline-width: 1px;
  border-color: rgb(234, 48, 18);
  border-style: solid;
  border-width: 1px;
  text-align: center;
  padding: 14px 20px 14px 20px;
}

.headline_container .subscribe_button:hover {
  background-color: rgb(159, 22, 0);
  transition: background .2s, color .2s;
}

.headline_container .download_button {
  background-color: rgba(0, 0, 0, 0.4);
  outline-color: rgb(0, 0, 0);
  outline-style: solid;
  outline-width: 1px;
  border-color: rgb(199, 126, 25);
  border-style: solid;
  border-width: 1px;
  text-align: center;
  padding: 14px 20px 14px 20px;
}

.headline_container .download_button:hover {
  background-color: rgb(176, 102, 1);
  transition: background .2s, color .2s;
}

/************************************************************
/* Latest videos
*/
.latestvideos_container {
  position: relative;
  width: 100%;
  padding-top: 20px;
}

.latestvideos_container .titel a {
  padding-left: 10px;
  text-decoration: none;
}

.latestvideos_container .titel a:hover {
  text-decoration: underline;
}

.latestvideos_container .content {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.latestvideos_container .item {
  padding-top: 10px;
  width: 24%;
}

/************************************************************
/* Game Updates
*/
.game_updates_container {
  position: relative;
  width: 100%;
  height: 100%;
}

.game_updates_container .background {
  position: relative;
  width: 100%;
  height: 100%;
}

.game_updates_container .flex_container {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.game_updates_container .item {
  position: relative;
  width: 49%;
  padding: 10px;
  box-shadow: 2px 0 20px rgba(0, 0, 0, .5);
  background-color: rgba(0, 0, 0, 0.2);
}

.game_updates_container .item .footer {
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
	border-top: 1px solid rgb(136, 136, 102);
}



/************************************************************
/* Game Help
*/
.game_help_container {
  position: relative;
  width: 100%;
  height: 100%;
}

.game_help_container .background {
  position: relative;
  width: 100%;
  height: 100%;
}

.game_help_container .flex_container {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.game_help_container .item_wide {
  position: relative;
  width: 100%;
  padding: 10px;
  box-shadow: 2px 0 20px rgba(0, 0, 0, .5);
  background-color: rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.game_help_container .item_wide .text {
  max-width: 800px;
}

.game_help_container .item {
  position: relative;
  width: 49%;
  padding: 10px;
  box-shadow: 2px 0 20px rgba(0, 0, 0, .5);
  background-color: rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.game_help_container .item .footer {
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
	border-top: 1px solid rgb(136, 136, 102);
}



/************************************************************
/* Media queries
*/
@media screen and (max-width: 1100px) {
  .latestvideos_container .item {
      width: 49%;
  }
}

@media screen and (max-width: 1000px) {
  .menu_container .dr-deviant-image {
      display: none;
  }

}

@media screen and (max-width: 700px) {
  .latestvideos_container .item {
      width: 100%;
  }

  .game_updates_container .item, .game_help_container .item {
      width: 100%;
  }

  .headline_container .fontDarkGreenBig {
      font-size: 35px;
  }

  .headline_container .fontBrownBig {
      font-size: 18px;
  }

  .headline_container .buttons {
      justify-content: center;
  }

  .headline_container .titel,
  .headline_container .text {
      text-align: center;
  }
}