body {
    background: #020024;
    background: linear-gradient(360deg, rgba(2, 0, 36, 1) 26%, rgba(0, 70, 93, 1) 85%, rgba(0, 104, 148, 1) 100%);
    /* background-repeat: no-repeat; */
  background-size: 100% 100%;
  background-attachment: fixed;
  min-height: 100dvh;

    color: azure;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.125rem;
    text-shadow: 2px 2px 2px black;
}

a {
    text-decoration: none;
    color: azure;
}

a:hover {
    color: rgb(194, 203, 255);
}

h1, h2, h3, h4, h5 {
    margin: 0;
}

p {
   margin: 0;
    padding: 0;
}

.logo, .banner, .news, nav, .core {
    background-color: #95784d85;

    border: solid;
    border-color: #af815c;
    border-radius: 10px;
}

.core a {
    text-decoration: underline;
}

.logo, nav {
    margin-right: 10px  ;
}

.container {
    /* background-color: brown; */

    width: 95%;
    height: 95dvh;
    margin: auto;
    padding: 15px;
    gap: 20px;

    display: flex;
    flex-direction: column;
    
}

/* ---------------------------------------------------------------------- */
/* HEADER, le haut du site */
/* ---------------------------------------------------------------------- */

header {
    /* background-color: green; */

    width: 100%;
    min-height: 200px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
}

.header_right {
    /* background-color: aqua; */

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 85%;
}

.logo {
    /* background-color: red; */

    min-width: 200px;
    min-height: 200px;

    background-image: url(../images/greentunnel.jpg);
    background-size: cover;
    background-position: 50% 30%;
    background-repeat: no-repeat;
}

.news {
    /* background-color: yellow; */
    display: flex;
    flex-direction: row;
    /* justify-content: center; */

    height: 50px;
    width: auto;
    padding-left: 10px;
}

.news img {
    height: 100%;
    width: auto;
}

.news p {
    margin: 0;
    padding-left: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    font-style: italic;
}

.banner {
    height: 130px;
    width: auto;
    background-image: url(../images/blueangel.jpg);
    /* object-fit: cover; */
    background-size: cover;
    background-position: 50% 30%;
    background-repeat: no-repeat;   
    padding-left: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner h3 {
    color: rgb(218, 255, 220);
}





/* ---------------------------------------------------------------------- */
/* HEADER FIN */
/* ---------------------------------------------------------------------- */

.content {
    /* background-color: orange; */

    display: flex;
    flex-direction: row;
    justify-content: space-between;

    width: 100%;
    min-height: 66dvh;
    max-height: 66dvh;
}

nav {
    /* background-color: turquoise; */

    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    padding-top: 20px;
}

nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
    justify-content: center;
    text-align: center;
}

.lowernav ul {
    display: flex;
    flex-direction: row;
}





.core {
    /* background-color: #541abe; */

    width: 85%;
    overflow-y: scroll;
    padding: 20px;

}

.core h2 {
    text-align: center;
}


/* -------------------------------------------------------------- */
/* ARTWORKS GRID */
/* -------------------------------------------------------------- */

.drawings {
    /* background-color: rgb(65, 104, 59); */
    width: 98%;
    gap: 49px;
    display: grid;
    grid-template-columns: 20% 20% 20% 20%;
    padding-top: 20px;
    margin: auto;
    justify-content: center;
    
}

.drawings a {
    width: 100%;
}

.drawings img {
    border: solid;
    width: 100%;
    height: auto;
    /* image-rendering: crisp-edges; */
    margin-bottom: 20px;
}

/* -------------------------------------------------------------- */
/* PHONE DIMENSIONS */
/* -------------------------------------------------------------- */
@media screen and (max-width: 1200px){
    .drawings {
        grid-template-columns: 30% 30% 30%;
    }

}
@media screen and (max-width: 920px)  {

    body {
        font-size: 1rem;
    }

    .logo {
        display: none;
    }

    .header_right {
        width: 100%;
    }

    .content nav {
        min-width: 100px;
    }

    .lowernav ul {
        gap: 13px;
    }

    .lowernav img {
        width: 100%;
    }

    .drawings {
        grid-template-columns: 40% 40%;
    }
}





@media screen and (max-width: 520px){
    .drawings {
        grid-template-columns: 80%;
    }

    .banner {
        font-size: 13px;
    }

    .news {
        min-height: 50px;
        height: 60px;
        margin-top: 10px;
    }
}