body {
  text-align: center;
  font-family: monospace; /* Changes the Font of the Body */
  background-image:url("images/smm_vacation.jpg"); /* gives the body a image as a background */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  margin: 0;
  padding: 0;
}

#content_box {
  font-size: 3vw;
  width: 100vw;
  height: 100vh;
  position:absolute;
  background: linear-gradient(135deg, rgba(56,131,82,1) 38%, rgba(18,55,20,1) 100%);
}

#header {
  color:green;

}
#description_text {
  background: linear-gradient(135deg, rgba(85,198,125,1) 38%, rgba(13,96,18,1) 100%);
  color: white;
  padding: 3%;
  margin: 3%;
  float:right;
  width: 40%;
}
#subtitles_png {
  float:left;
  zoom:130%;
  margin: 5px;
  margin-left:50px;
  margin-top:200px;
  position: static;
}

a {
  color:Crimson; /* colors the Link of the Channel "a" */
  background-color: lightgreen;
  transition: all .5s;
  font-size: 3vh;
}

a:hover {
  color:Crimson; /* colors the Link of the Channel "a" */
  background-color: green;
  font-size: 3.2vh;
}

a:active {
  color:Crimson; /* colors the Link of the Channel "a" */
  background-color: darkgreen;
  font-size: 3.3vh;
}
