*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  list-style: none;	  
}

h1{
	text-align: center;
	font-size: 60px;
}


h2{
  font-family: "Roboto", sans-serif;
  text-align: center;
  color: green; 
  font-size: 40px;
  text-decoration: none;
}


a:link{
	text-decoration: none;
}
  
.image-gallery-container {
  font-family: "Roboto", sans-serif;
  margin-left: 300px;
  margin-right: 300px;

}

.image-gallery-container .images {
  max-width: 100%;
  display: block;
  margin: auto 0;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.image-gallery-container .images .image {
  cursor: pointer;
}


.image-gallery-container .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 120px;
  margin-bottom: 40px; 
}

.body{
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: space-around;
	align-ites: center;
	background-image: url(link2/links.jpg);
	background-position: center;
	background-size: cover;
}
.image img:hover { 
  outline: 5px solid #ccc; 
} 

	
.africabar{
	max-width: 100%;
	height: 40px;
	background-image: url(link2/afbar.jpg);
	display: flex;
	justify-content: space-around;
	align-items: center;
	opacity: 1;
}


/* 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;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 19px;
}

/* 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;
} 