body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #000;
}

.gallery {
	width: 80%;
	height: 500px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.titre {
    color: whitesmoke;
    text-align: center;
  }

  .logo {
    width: 100px;
    height: 100px;
  }

  .menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #333;
    color: white;
  }

  .menu a {
    text-decoration: none;
    color: white;
  }
  #photos
	{
	width:auto;
	background:#fff5e0;
	border:1px solid #9e6a02;
	margin-top:25px;
	padding:15px;
	text-align:center;
	}	
  .photo {
	display: inline-block;
	margin: 10px;
	text-align: center;
  }
  .photo img {
	max-width: 100%;
	height: auto;
  }
  .photo .title {
	font-weight: bold;
	margin-top: 5px;
  }
  .photo .description {
	margin-top: 5px;
  }