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;
}

/* IMAGE CONTAINER  */

.imageContainer {
	float: right;
	width: 50%;
	height: 70%;
	display: flex;
	justify-content: center;
	align-items: center;
   
}

#image {
	margin-top: 30%;
   
	width: 470px;

}

/*CONTACT CONTAINER/FORM*/

.contactContainer {
  
    display: flex;
    padding-top: 5%;
	justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "Phudu", serif;
    height: 100%;
  
}

.contactContainer li {
    list-style: none;
    font-size: 20pt;
}

.btn-primary {
  
    margin-left: 42%;

} 


/*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;


}

