*, ::before, ::after {
  box-sizing: border-box;
  margin: 20;
  padding: 0;
}

html, body
{
    height:100%
}

@font-face
{
	font-family: 'dms';
	src: url('typo/DMSerifDisplay-Regular.ttf');
}


body
{
	margin:auto;
	font-family: 'dms', Helvetica, Arial, sans-serif;
  text-align:center;
  background-color: #FFFAF0;
}

h1
{
  font-size: 1.2rem;
}

conteneur {
	display: flex;
	justify-content: center;
  }

.social {
	padding:1%;
}

#social-icons
{
  display:flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}
#social-icons li
{
  list-style:none;
	padding-left: 0;
 }
#social-icons li a
{
  text-decoration: none;
}
#social-icons li a:hover
{
  text-decoration: none;
  opacity: 0.9;
}
#social-icons li img, #social-icons-f li img
{
  width:30px;
  height:30px;
  margin-right: 20px;
  margin-left: 0px;
}

.galery {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2vmin;
  padding: 0 14px;
}
.galery::after {
  content:'';
  display:block;
  flex-grow: 10;
}
.galery li {
  list-style-type: none;
  height: 250px;
  flex-grow: 1;
}
.galery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}