p {
	color: #6F8FAF;
	text-align: center;
	font: Garamond;
	font-size: 18px;
	}
h1 {
	color: #445a70;
	font: Garamond;
	}
	
h2 {
	color: #6F8FAF;
	font: Garamond;
	}
	

body {
	background-color: #F0FFFF;
	background-image: url('fond.jpg');
	background-size: 7px 7px;
}

.header	{
	text-align: center;
}

.année	{
	color: #445a70;
}

.mois:hover {
background-color: #ADD8E6;
}

.pottfolio{
color: #8db7e0;
}

.portfolio:hover {
background-color: #ADD8E6;
}

.title
{
	color: black;
	font: Garamond;
	}

.ensemble {
	text-align: center;
	margin-top: 100px;
	margin-right: 10%;
	margin-left: 10%;
	}
	
.row {
	display: flex;
	max-width: 100%;
	min-width: 100%;
	height: 100%;
}

.column {
  flex: 100%;
  padding: 5px;
  
}

.photo{
	transition: 0.01s ease;
}

.photo:hover{
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	transition: 0.5s ease;
	cursor: pointer;
}

.copyright {
  text-align: center;
  margin-top: 200px;
  margin-bottom: 100px;
}

.copyright2 {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

img {
  /* This is where magic happens */
  max-width: 100%;
  height: 100%;
  width: auto;

  display: block;
  margin: 0 auto;
  margin-top: 10px;
  object-fit: contain;
}

         /* Style du modal (fenêtre contextuelle) */
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7); /* Fond semi-transparent */
            justify-content: center;
            align-items: center;
        }

        /* Style pour l'image dans le modal */
        .modal-content {
            max-width: 80%;
            max-height: 80%;
        }

        /* Style pour le bouton de fermeture */
        .close {
            position: absolute;
            top: 10px;
            right: 25px;
            color: white;
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
        }