body {
  text-align: center;
  background-color: rgb(183, 230, 248);
}

h1 {
  font-size: 525%;
  font-family: "Sacramento", cursive;
  color: #66bfbf;
}

h2 {
  font-size: 200%;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #11999e;
}

h3 {
  font-size: 200%;
}

.profile {
  padding: 50px;
}

.programmer {
  margin: 50px auto 0 auto;
  font-size: 2.5rem;
  font-family: "Lobster", cursive;
  color: #66bfbf;
  font-weight: normal;
}

.top-container {
  padding-top: 100px;
  margin: auto;
  height:792px;
}

.middle-container {
  background-color: white;
}

.pro {
  text-decoration: underline;
}

.bottom-container {
  /* position: relative; */
  height: 200px;
  background-color: #66bfbf;
}

.copyright {
  width: 40%;
  color: white;
  margin-top: 100px;
}

.top-cloud {
  position: absolute;
  right: 400px;
  top: 70px;
}

hr {
  border-style: none;
  border-top-style: dotted;
  border-color: gray;
  border-width: 10px;
  width: 5%;
}

.bottom-cloud {
  position: absolute;
  left: 400px;
  top: 414px;
}

.myImage {
  margin: 50px auto 20px;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  border: 2px solid skyblue;
}

.editing {
  width: 200px;
  margin: 40px 40px 10px 10px;
  float: left;
}

.poem {
  width: 175px;
  float: right;
  margin: 10px 10px 0px 40px;
}

/* font-family: 'Poppins', sans-serif; */

/* font-family: 'Indie Flower', cursive; */

.mountain {
  position: relative;
  bottom: 95px;
}

.skill-row {
  text-align: left;
  margin: 50px auto 100px auto;
  width: 50%;
  line-height: 2;
}

.intro {
  width: 30%;
}

.final-thought {
  width: 30%;
  margin-bottom: 16px;
}

.skills {
  padding: 50px;
}

p {
  margin: 10px auto auto auto;
  font-size: 125%;
  /* font-family: 'Stylish', sans-serif; */
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  /* width: 50%; */
}

.footer-link {
  position: relative;
  top: 50px;
  text-decoration: wavy;
  color: #11999e;
  font-size: 25px;
  font-family: cursive;
  -webkit-text-stroke-width: thin;
  margin: 21px;
}

.contact-me{
  padding: 27px
}

a:hover{
  color: whitesmoke;
}
.BUTTON_FTC {
  background: #11999e;
  background-image: -webkit-linear-gradient(top, #11999e, #1a8188);
  background-image: -moz-linear-gradient(top, #11999e, #1a8188);
  background-image: -ms-linear-gradient(top, #11999e, #1a8188);
  background-image: -o-linear-gradient(top, #11999e, #1a8188);
  background-image: -webkit-gradient(to bottom, #11999e, #1a8188);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  color: #ffffff;
  font-family: Verdana;
  font-size: 15px;
  font-weight: 200;
  padding: 34px;
  -webkit-box-shadow: 1px 1px 20px 0 #000000;
  -moz-box-shadow: 1px 1px 20px 0 #000000;
  box-shadow: 1px 1px 20px 0 #000000;
  text-shadow: -8px 4px 20px #000000;
  border: solid #1a8188 4px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  width: 200px;
  margin: 50px;
}

.BUTTON_FTC:hover {
  border: solid #166f75 1px;
  background: #166f75;
  background-image: -webkit-linear-gradient(top, #166f75, #16857b);
  background-image: -moz-linear-gradient(top, #166f75, #16857b);
  background-image: -ms-linear-gradient(top, #166f75, #16857b);
  background-image: -o-linear-gradient(top, #166f75, #16857b);
  background-image: -webkit-gradient(to bottom, #166f75, #16857b);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  text-decoration: none;
}

@import url('https://fonts.googleapis.com/css?family=Arima+Madurai:300');

*,
*::before,
*::after {
	box-sizing: border-box;
}


.birds-container {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	 /* min-height: 100vh; */
	min-height: 10rem;
  background-blend-mode: soft-light;
	background-size: cover;
	background-position: center center;
  bottom: 56px;
	padding: 2rem;
}

.bird {
	background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/174479/bird-cells-new.svg);
	background-size: auto 100%;
	width: 88px;
	height: 125px;
	will-change: background-position;
	
	animation-name: fly-cycle;
	animation-timing-function: steps(10);
	animation-iteration-count: infinite;
}
	.bird--one {
		animation-duration: 1s;
		animation-delay: -0.5s;		
	}
	
	.bird--two {
		animation-duration: 0.9s;
		animation-delay: -0.75s;
	}
	
	.bird--three {
		animation-duration: 1.25s;
		animation-delay: -0.25s;
	}
	
	.bird--four {
		animation-duration: 1.1s;
		animation-delay: -0.5s;
	}



.bird-container {
	position: absolute;
	top: 20%;
	left: -10%;
	transform: scale(0) translateX(-10vw);
	will-change: transform;
	
	animation-name: fly-right-one;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
	.bird-container--one {
		animation-duration: 15s;
		animation-delay: 0;
	}
	
	.bird-container--two {
		animation-duration: 16s;
		animation-delay: 1s;
	}
	
	.bird-container--three {
		animation-duration: 14.6s;
		animation-delay: 9.5s;
	}
	
	.bird-container--four {
		animation-duration: 16s;
		animation-delay: 10.25s;
	}
	


@keyframes fly-cycle {
	
	100% {
		background-position: -900px 0;
	}
	
}

@keyframes fly-right-one {
	
	0% {
		transform: scale(0.3) translateX(-10vw);
	}
	
	10% {
		transform: translateY(2vh) translateX(10vw) scale(0.4);
	}
	
	20% {
		transform: translateY(0vh) translateX(30vw) scale(0.5);
	}
	
	30% {
		transform: translateY(4vh) translateX(50vw) scale(0.6);
	}
	
	40% {
		transform: translateY(2vh) translateX(70vw) scale(0.6);
	}
	
	50% {
		transform: translateY(0vh) translateX(90vw) scale(0.6);
	}
	
	60% {
		transform: translateY(0vh) translateX(110vw) scale(0.6);
	}
	
	100% {
		transform: translateY(0vh) translateX(110vw) scale(0.6);
	}
	
}

@keyframes fly-right-two {
	
	0% {
		transform: translateY(-2vh) translateX(-10vw) scale(0.5);
	}
	
	10% {
		transform: translateY(0vh) translateX(10vw) scale(0.4);
	}
	
	20% {
		transform: translateY(-4vh) translateX(30vw) scale(0.6);
	}
	
	30% {
		transform: translateY(1vh) translateX(50vw) scale(0.45);
	}
	
	40% {
		transform: translateY(-2.5vh) translateX(70vw) scale(0.5);
	}
	
	50% {
		transform: translateY(0vh) translateX(90vw) scale(0.45);
	}
	
	51% {
		transform: translateY(0vh) translateX(110vw) scale(0.45);
	}
	
	100% {
		transform: translateY(0vh) translateX(110vw) scale(0.45);
	}
	
}
