body{
  margin: 0;
  text-align: center;
  font-family: 'Merriweather', serif;
  /*font-family: "Trebuchet MS","Lucida Grande","Lucida Sans Unicode","Lucida Sans",Tahoma,sans-serif
  This can be done to ensure fonts remain similar even on systems that do not have some fonts downloaded*/
}
h1{
  margin-top: 50px auto 0 auto;
  font-family: 'Sacramento', cursive;
  font-size: 5.625rem;
  color: #364f6b;
  line-height: 0.5;
  /*width: 10%;   margin: 0(top bottom) auto(right left) ;*/

  /*when width(or any similar property) is used the text-align in the body gets overridden. To make it center again, we can use the margin property. This is because h1 is a block element.*/
}
h2{
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #364f6b;
}
.a-programmer{
  font-weight: normal;
}
h3{
  font-family: 'Montserrat', sans-serif;
  color: #3f72af;
}
a{
  color: #3f72af;
}
p{
  color: #393e46;
}
.top-container{
  background-color: #bbe1fa;
  position: relative;
  padding-top: 100px;

}
.top-cloud{
  position: absolute;
  right: 22%;
  top: 10%;
}
.bottom-cloud{
  position: absolute;
  left: 22%;
  bottom: 37%;
}


/* .middle-container{

} */
.profile{
  padding-bottom: 75px;
  width: 700px;
  margin: 50px auto 0 auto;
}
.profile-pic{
  margin-top: 50px;
  height: 200px;
  width: 200px;
}
hr{
  border-style: none;
  border-top-style: dotted;
  border-width: 10px;
  width: 5%;
  border-color: #e4e3e3;
}
.skills{
  padding-top: 60px;
  padding-bottom: 60px;
}
.skill-row{
  width: 700px;
  margin: 100px auto 100px auto;
  text-align: center;
  line-height: 1.5;
  height: 25%;
}
.programming-img{
  width: 200px;
  float: left;
  padding-right: 30px;
}
.webdev-img{
  width: 200px;
  float: right;
  padding-left: 30px;
}
.contact-me{
  padding-top: 60px;
  padding-bottom: 60px;
  width: 50%;
  text-align: center;
  margin: auto;
}
.btn {
	box-shadow:inset 0px -3px 7px 0px #29bbff;
	background:linear-gradient(to bottom, #2dabf9 5%, #0688fa 100%);
	background-color:#2dabf9;
	border-radius:3px;
	border:1px solid #0b0e07;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Montserrat,sans-serif;
  font-weight: bold;
	font-size:15px;
	padding:9px 23px;
	text-decoration:none;
	text-shadow:0px 1px 0px #263666;
}
.btn:hover {
	background:linear-gradient(to bottom, #0688fa 5%, #2dabf9 100%);
	background-color:#0688fa;
}
.btn:active {
	position:relative;
	top:1px;
}

.bottom-container{
  background-color: #EAF6F6;
  padding-top: 40px;
  padding-bottom: 20px;
}
.twitter{
  height: 50px;
  width: 50px;
  margin-right: 50px;
}
.insta{
  height: 50px;
  width: 50px;
}
.linkedin{
  height: 50px;
  width: 50px;
  margin-left: 50px;
}
.copyright{
  font-size: 0.65rem;
}
