body {
	background: linear-gradient(-45deg, #bed5db, #1A4F56 );
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

#logo {
width: 500px;	
padding: 14px 50px;
}


/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 35px 50px;
  text-decoration: none;
  font-size: 20px;
  font-family: "Phudu", serif;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

/* Right-aligned section inside the top navigation */
.topnav-right {
  float: right;
}

/* CATCH PHRASE CONTAINER  */
.phraseContainer {
	
	width: 50%;
	height: 90%;
	display: flex;
	padding-top: 30px;
	padding-left: 130px;

}

/* CATCH PHRASE */
.phrase h1 {
	font-family: "Phudu", serif;
	font-size: 30pt;

}

/*CONTACT BUTTON  */
.phrase button {
margin-top: 30px;

}

.phrase p {
	font-family: "Roboto", serif;

	font-size: 18pt;
}

.phrase h2 {
	font-size: 20pt;
}

/* IMAGE CONTAINER  */

.imageContainer {
	float: right;
	width: 50%;
	height: 70%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#image {
	border-radius: 5px;
	width: 500px;

}

/*FOOTER*/

/* ICONS*/
.iconContainer {
	display: flex;
	justify-content: center;
	align-content: center;
	background-color:#c6d1de;
	
}

.icons {
width: 150px;
display: flex;
justify-content: space-evenly;
padding-top: 10px;


}











