
@font-face {
    font-family: 'Vivaldi';
    src: url("VIVALDII.TTF") format('truetype');
}

body {
    background-color: rgb(225, 225, 225);
}

h2.titre{
    text-align: center;
    font-size: 85px;
    color: rgb(225, 225, 225);
    background-color: rgb(8, 8, 8);
    /*text-decoration: underline #874d01;
    text-decoration: underline;*/
    font-family: "Vivaldi", Vivaldi, Bradley Hand ITC, Arial, sans-serif;
    margin: 0 0 0.43em 0;
    padding: 0.43em 0 0.43em 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}
  
  /* Create four equal columns that sits next to each other */
.column {
    flex: 30%;
    max-width: 30%;
    padding: 0 6px;
}
  
.column img {
    margin-top: 12px;
    vertical-align: middle;
    width: 100%;
}

.retour{
    position: fixed;
    font-size: x-large;
    bottom: 2%;
    right: 1%;
    background-color: #010101;
    color: rgb(225, 225, 225);
    border: 1px solid rgb(40, 40, 40);
    padding: 10px 20px;
    margin: 0;
}

.retour:hover{
    /*background-color: rgb(28, 28, 28);*/
    color: #ffffff;
    /*border: 1px solid rgb(255, 255, 255);*/
    cursor: pointer;
}

.margBottom{
    margin-bottom: 65px;
}
  
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
    .column {
        flex: 50%;
        max-width: 50%;
    }

    h2.titre{
        font-size: 55px;
    }

    .retour{
        font-size: large;
        padding: 8px 18px;
    }
}
  
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }

    h2.titre{
        font-size: 35px;
    }

    .retour{
        font-size: medium;
        padding: 6px 16px;
    }
}


/*-------------Fenetre modal pour agrandir une image------------------------------------*/


.thumbnail {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto
}
    
.thumbnail:hover {opacity: 0.7;}
    
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    /*overflow: hidden;*/
    /*background-color: rgb(0,0,0); /* Fallback color */
    /*background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
    background-color: rgba(62, 62, 62, 0.9);
}
    
/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: auto;
    /*max-width: 75%;*/
    height: 100vh;
    
}
    
/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}
    
/* Add Animation */
.modal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}
    
.out {
    animation-name: zoom-out;
    animation-duration: 0.6s;
}
    
@-webkit-keyframes zoom {
    from {-webkit-transform:scale(1)}
    to {-webkit-transform:scale(2)}
}
    
@keyframes zoom {
    from {transform:scale(0.4)}
    to {transform:scale(1)}
}
    
@keyframes zoom-out {
    from {transform:scale(1)}
    to {transform:scale(0)}
}
    
/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
    
.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
    
    /* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 800px){
    .modal-content {
        width: 100%;
        height: auto;
    }
}

/*-------------------------------------------------------------------------------------*/



