* {
  box-sizing: border-box;
}
body {
	font-family:verdana, arial, helvetica, sans-serif;
	font-weight:300;
	background-image: url("fond.jpg");
	}
h1 {
	font-size:120%;
	font-weight:600;
	color: #256ad1;
	text-align: center;
	}
h2 {
	font-size:115%;
	font-weight:600;
	color: #256ad1;
	}
li 	{
	margin:0px 0px 3px 20px;
	font-size:100%;
	font-weight:600;
	}
figure {
  text-align: center;
  font-style: italic;
  text-indent: 0;
  margin: 0em;
}


.board { 
  border: 0px solid yellow;
  color: blue;
  padding: 1rem;
}
 @media (max-width: 600px) {
   .areas {
    /* For small screen, the grid is only one single columns ( no columns in other words) */
    display: grid;
   }
}

 @media (min-width: 600px) {
  /* For descktop and tablets screen, the grid as 2 columns */
  .areas { 
     display: grid;
     grid-template-columns: 1fr 1fr; 
     gap: 10px;} 
}

.text {
  height: 100%;
  min-width: 300px;
  padding: 1px;
  border: 1px solid green; 
}

.gallery {
  /*Image/photos exposition */
  margin: 0 auto;
  display: grid;
  grid-gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); */
}

.gallery img{
  max-width: 100%;
  height: auto;
  cursor : zoom-in;
}

.cursor {
  cursor: pointer;
}

.content {
  border: 0px solid blue; 
  width: 100%;
  height: auto;
  min-width: 600px;
  min-height: 800px;
  overflow: auto;
  border: 1px solid green; 
 
}


/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  height: 100%;
  max-width: 1200px;
  cursor : zoom-in;

}
.modal-content img{
  max-width: 100%;
  height: auto;
  cursor : zoom-out;
}


/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: s-resize;
}



/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.caption {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}


.smalimg {
	width: 200px;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.footer {
  margin-bottom: 0;
  text-align:"center";

}

/* For the toolbar */

.grid-container {
  display: grid;
  grid-template-columns: repeat(10,auto);
  grid-gap: 2px;
  padding: 1px;
}

.grid-container > div {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 2px 0;
  font-size: 30px;
}
figure {
  border: 0px #cccccc solid;
  padding: 0px;
}


}

figcaption {
  font-style: italic;
  padding: 1px;
  text-align: center;
}


img.scaled {
  width: 100%;
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
}

 @media (max-width: 600px) {
  /* For phone screen */
  .toolbar {
    display: grid; 
    grid-template-columns: repeat(5, auto);
    height: auto;
    border: 0px solid lightblue; 
    }
  .toolbar img {
    display: none ;
    vertical-align: middle;
    max-height: 80px;
  }
 
