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;
}

h1  {
  color:rgba(255,255,255,0.95); /*colors the h1*/
  background-color:rgba(255,255,255,0.95); /* colors the backgrond of the Website */
  font-size: 64px; /* Changes the Size of the font */
  text-shadow: 4px 4px 6px #000000; /* creates a shadow effect over the header */
}

#about_me {
  background-color:rgba(255,255,255,0.5);
  position:relative;
  top: 50vh;
  font-size: 3.8vh;
  text-shadow: 1px 1px 2px #000000;
}

#title_image {
  width: 80vw;
  transition: all .5s;
  position:fixed;
  top:0px;
  left: 10vw;
}

#title_image:hover {
  width:85vw;
  left: 7.5vw;
}

#content_box {
  font-size: 3vw;
  width: 100vw;
  height: 200vh;
  position:absolute;
  top: 100vh;
  background: linear-gradient(118deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
}

#header {
  color:green;

}
#description_text {
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
  color: white;
  padding: 3%;
  margin: 3%;
  float:left;
  width: 40%;
}

#subtitles_link {
  background: linear-gradient(118deg, rgba(14,152,144,1) 35%, rgba(91,40,226,1) 100%);
  color: white;
  padding: 3%;
  margin: 3%;
  float:right;
  width: 35%;
}

#video_box{
  background-color: pink;
  border: 5px dashed red;
  margin: 8px;
  margin-right:70px;
  margin-top:70px;
  float:right;
  width: 40%;

}

a {
  color:Crimson; /* colors the Link of the Channel "a" */
  background-color: darkblue;
  transition: all .5s;
  font-size: 3vh;
}

a:hover {
  color:Crimson; /* colors the Link of the Channel "a" */
  background-color: blue;
  font-size: 3.2vh;
}

a:active {
  color:Crimson; /* colors the Link of the Channel "a" */
  background-color: purple;
  font-size: 3.3vh;
}
