/* NAVIGATION BAR */
/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 18px;
  font-family: "Jost", sans-serif;
  font-weight: 450;
  letter-spacing: 0.75px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #6495ED;
  color: white;
}

/*DIV*/
.container {
            display: flex;
            align-items: center; /* Centers the content vertically */
        }
        .container img {
            margin: 50px;
        }
		.container p{
		margin-right: 150px;
		}

div {
	font-size: 15px;
  font-family: "Jost", sans-serif;
  font-weight: 350;
  letter-spacing: 0.5px;
  text-align: justify;
  line-height: 1.5;
  margin: 25px;
  
}

/*Links*/
a {
	color:black; 
	text-decoration: none; 
	}
	
a:hover {
	background-color:#F08080;
	}




/*IMG*/
img {
  clip-path: circle(50%);
}

/*UL*/
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}


