/*
@font-face {
    font-family: Corsiva;
    src: url(./fonts/MTCORSVA.ttf);
}*/


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    /* font-family: Lato, Verdana, sans-serif; */
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 400;
    /*letter-spacing: 0.015em;*/
    line-height: 1.4em;
}
@media only screen and (min-width: 768px) {
    html {
        font-size: 19px;
    }
}
@media only screen and (max-width: 320px) {
    html {
        font-size: 14px;
    }
}



main, header, #index-container, #control-container {
    position: relative;
    padding: 1rem 8rem;
}
main, #index-container {
    padding-top: 2em;
}
@media only screen and (max-width: 767px) {
    main, header, #index-container, #control-container {
        padding: 1rem;
    }
}


#index-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    overflow: scroll;
}

#index-container.active {
    display: block;
}

#control-container {
    position: fixed;
    bottom: 0;
    margin-left: -8px;
    z-index: 10;
    background: white;
}



#link-container {
    position: fixed;
    width: 40%;
    height: 740px;
    overflow: scroll;
    top: 0;
    right: 0%;
    padding-top: 64px;
    padding-right: 64px;
    display: none;
}

@media only screen and (max-width: 767px) {
    #link-container {
        left: 10%; 
        width: 100%;
    }
}

#infos {
    color: darkgrey;
    padding-top: 2.6em;
}
@media only screen and (max-width: 767px) {
    #infos {
        padding-top: 1.3em;
    }
}





a {
    color: blue;
    text-decoration: none;
    cursor: pointer;
}

a:hover, .offcanvas a:focus{
    text-decoration: underline;
}

p a {
    color: black;
    /*text-decoration: underline;*/
    /*text-shadow: 1.6px 1.6px 1.6px rgba(0, 0, 0, 0.1);*/
    transition: 0.4s;
}


ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding-bottom: 72px;
    line-height: 1.4;

    columns: 4;
    -webkit-columns: 4;
    -moz-columns: 4;
}
@media only screen and (max-width: 767px) {
    ul {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

ul li a {
    color: black;
    /*font-size: 22px;*/
    cursor: pointer;
    /*font-weight: bold;*/
    /*letter-spacing: 0.025em;*/
}

p {
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: transparent;
    z-index: 3;
}


/*.corsiva {
    font-family: "Corsiva", Arial, sans-serif;
}*/


.bg-color {
     background-color: white; /* #F9F9FA; light grey // #FFF8E7;  Average Color of the Universe /  */
}


button {
    border: none;
    padding: 8px 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 8px 2px;
    -webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
    cursor: pointer;
}

.button1 {
    background-color: white;
    border: none;
    z-index: 2;
    /*border: 2px solid #e7e7e7;*/
}
.a-control, button {
   color: darkgrey;
   font-family: Arial, sans-serif;
   font-size: 12px;
   padding: 8px;
}
.underline {
    text-decoration: underline;
}
#a-filter-mediterranean {
    text-decoration: underline;
}

.button1:hover {
    /*background-color: #e7e7e7;*/
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}
.button1:active {
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
}


/* #next, #previous {} */












/* media queries

mobile 2 :
@media only screen and (min-width : 375px) (max-width: 767px) {}

ipad :
@media only screen and (min-width : 768px) and (max-width : 1024px) {}

desktop :
@media only screen and (min-width: 1025px) {}

desktop large :
@media only screen  and (min-width : 1824px) {}

*/

