body {
  padding: 0;
  margin: 0;

}

#content {
  height: 100vh;
  width: 100%;
  background-color: blue;
  padding: 0;
  margin: 0;
}


#top_container {
  height: 50%;
  width: 100%;
  background: url("../images/earth.jpg") no-repeat bottom center  fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/Floating-Tree.jpg', sizingMethod='scale')";
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.../images/Floating-Tree.jpg', sizingMethod='scale');

  padding: 0;
  margin: 0;

}

#bottom_container {
    height: 50%;
    width: 100%;
    background-color: #fff;
    padding: 0;
    margin: 0;
    border-top: 3px solid #73AD21;
}

#details {
  width: 300px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 13%;
  transform: translateX(10%);


  font-family: 'Montserrat', serif;
  font-size: 12px;
  color: #949494;
}

/* @media Rule */
@media all and (max-width: 500px) {
#details {
  width: 300px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 13%;
  transform: translateX(6%);


  font-family: 'Montserrat', serif;
  font-size: 12px;
  color: #949494;
}
}


#details_p span.name{
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
}
#details_p {
  text-align: center;
}

#social_container{
  position: relative;
  top: 15%;
  left: 50%;
  transform: translateX(-40%);
}
#floatImg {
  background: url("../images/pd.jpg") no-repeat center center;
    position:relative;
    left: 47%;
    transform: translateY(-100%);
    width:85px;
    height:85px;
    margin-left: -30px; /*set to a negative number 1/2 of your width*/

    border: 3px solid #73AD21;
    background-color: black;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    z-index: 10;
}
#quote_section{
  height: 30px;
  width: 100%;
  font-family: 'Tangerine', serif;
  font-size: 22px;

  word-wrap: break-word;

  position: relative;
  top: 40%;
  left: 0%;
  padding-left: 10px;
  padding-right: 5px;
  transform: translateX(-0%);
}
/* @media Rule */
@media all and (max-width: 320px) {
#quote_section{

  font-size: 18px;

  top: 38%;

}
}

/* Social Section */
.social-popout {
	height: 48px;
	width: 48px;
	margin: 10px;
  float: left;
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
	-ms-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.social-popout img {
	border-radius: 50%;
	margin: 8px;
	width: 100%;
	box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.8);
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
	-ms-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.social-popout img:hover {
	margin: 0px;
	box-shadow: 6px 6px 4px 4px rgba(0,0,0,0.3);
}

###################
#Clouds###
###################

/*Lets start with the cloud formation rather*/

/*The container will also serve as the SKY*/

*{ margin: 0; padding: 0;}

body {
	/*To hide the horizontal scroller appearing during the animation*/
	overflow: hidden;
}

#clouds{
	padding: 100px 0;
	background: #69b6f2;
	background: -webkit-linear-gradient(top, #4FB2FF 0%, #fff 100%);
	background: -linear-gradient(top, #c9dbe9 0%, #fff 100%);
	background: -moz-linear-gradient(top, #c9dbe9 0%, #fff 100%);
}

/*Time to finalise the cloud shape*/
.cloud {
	width: 200px; height: 60px;
	background: #fff;

	border-radius: 200px;
	-moz-border-radius: 200px;
	-webkit-border-radius: 200px;

	position: relative;
}

.cloud:before, .cloud:after {
	content: '';
	position: absolute;
	background: #fff;
	width: 100px; height: 80px;
	position: absolute; top: -15px; left: 10px;

	border-radius: 100px;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;

	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	-moz-transform: rotate(30deg);
}

.cloud:after {
	width: 120px; height: 120px;
	top: -55px; left: auto; right: 15px;
}

/*Time to animate*/
.x1 {
	-webkit-animation: moveclouds 15s linear infinite;
	-moz-animation: moveclouds 15s linear infinite;
	-o-animation: moveclouds 15s linear infinite;
}

/*variable speed, opacity, and position of clouds for realistic effect*/
.x2 {
	left: 200px;

	-webkit-transform: scale(0.6);
	-moz-transform: scale(0.6);
	transform: scale(0.6);
	opacity: 0.6; /*opacity proportional to the size*/

	/*Speed will also be proportional to the size and opacity*/
	/*More the speed. Less the time in 's' = seconds*/
	-webkit-animation: moveclouds 25s linear infinite;
	-moz-animation: moveclouds 25s linear infinite;
	-o-animation: moveclouds 25s linear infinite;
}

.x3 {
	left: -250px; top: -200px;

	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0.8; /*opacity proportional to the size*/

	-webkit-animation: moveclouds 20s linear infinite;
	-moz-animation: moveclouds 20s linear infinite;
	-o-animation: moveclouds 20s linear infinite;
}

.x4 {
	left: 470px; top: -250px;

	-webkit-transform: scale(0.75);
	-moz-transform: scale(0.75);
	transform: scale(0.75);
	opacity: 0.75; /*opacity proportional to the size*/

	-webkit-animation: moveclouds 18s linear infinite;
	-moz-animation: moveclouds 18s linear infinite;
	-o-animation: moveclouds 18s linear infinite;
}

.x5 {
	left: -150px; top: -150px;

	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0.8; /*opacity proportional to the size*/

	-webkit-animation: moveclouds 20s linear infinite;
	-moz-animation: moveclouds 20s linear infinite;
	-o-animation: moveclouds 20s linear infinite;
}

@-webkit-keyframes moveclouds {
	0% {margin-left: 1000px;}
	100% {margin-left: -1000px;}
}
@-moz-keyframes moveclouds {
	0% {margin-left: 1000px;}
	100% {margin-left: -1000px;}
}
@-o-keyframes moveclouds {
	0% {margin-left: 1000px;}
	100% {margin-left: -1000px;}
}
