html, body {
    width: 100%; 
    height: 100vh;
    margin: 0px; 
    padding: 0px;
    box-sizing: border-box;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Compagnon-Italic';
    src: url('/Type/compagnon-master/fonts/webfonts/Compagnon-Italic.woff2') format('woff2');
}

@font-face {
    font-family: 'Compagnon-Light';
    src: url('/Type/compagnon-master/fonts/webfonts/Compagnon-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Coconat-Regular';
    src: url('/Type/CLT-Coconat/desktop/Coconat-Regular.otf') format('woff2');
}

@font-face {
    font-family: 'VG5000';
    src: url('/Type/vg5000-master/fonts/webfonts/VG5000-Regular_web.woff2') format('woff2');
}

@font-face {
    font-family: 'Space-Grotesk';
    /* src: url('/Type/SpaceGrotesk-2.0.0/woff2/static/SpaceGrotesk-Medium.woff2'),
    url('/Type/SpaceGrotesk-2.0.0/woff2/static/SpaceGrotesk-Bold.woff2'), */
    src: url('/Type/SpaceGrotesk-2.0.0/woff2/static/SpaceGrotesk-Light.woff2');
}

p {
    font-family: 'Space-Grotesk', serif;
    font-variation-settings: 'wght' 100;
    font-size: 17pt;
    line-height: 1.5em;
    margin-top: 0.2em;
    color: black;
}

hr {
    size: 0.5px;
}

h1 {
    font-family: 'Compagnon-Italic';
    font-size: 120px;
    color: black;
}

h2 {
    font-family: 'Compagnon-Italic';
    font-size: 40px;
    color: black;
}

h3 {
    font-family: 'Compagnon-Italic';
    font-size: 25px;
    color: black;
}

a {
    color: #2243b6 ;
    text-decoration: underline 0.75px;
}

figcaption {
    font-family: 'Compagnon-Italic';
    font-size: 15px;
    font-weight: 200; 
    color: black;
    text-align: center;
}

/* Navbar Section */
.navbar {
    background-color: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 70px;
    z-index: 1000;
}

.navbar a {
    display: block;
    color: #002eff;
    text-align: center;
    text-decoration: none;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
    writing-mode: vertical-rl; 
    text-orientation: mixed;
    margin-top: 1em;
    margin-bottom: 1em;
  }

  .navbar-text {
    font-family: 'GT America', Helvetica, sans-serif;
    font-weight: 50;
    font-size: 23px;
    text-shadow: 0px 0px 3px #002eff, 0px 0px 10px white,0px 0px 0px white,0px 0px 5px #002eff,0px 0px 5px #002eff;
}

/* Navbar mobile */
.navbar-mobile {
    text-align: center;
}

.navbar-mobile a {
    display: block;
    color: gray;
    text-align: center;
    text-decoration: none;
    margin-right: 1em;
    margin-left: 1em;
    margin-top: 1em;
    margin-bottom: 1em;
}

.navbar-text-mobile{
    font-family: 'GT America', Helvetica, sans-serif;
    font-weight: 50;
     font-size: 1.2em;
    text-shadow: none;
    text-align: center;
     text-shadow: 0px 0px 5px white,0px 0px 30px limegreen,0px 0px 0px white,0px 0px 5px wheat,0px 0px 5px #1C2C89;
    
}

@media (min-width: 950px) {
    .navbar-mobile  {
    display: none;
}
}

@media (max-width: 950px) {
    .navbar  {
    display: none;
}
.navbar a {
    display: block;
    color: black;
    background-color: white;
    text-align: center;
    text-decoration: none;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
    writing-mode: sideways-lr; 
    text-orientation: upright;
    border: 0.75px solid black;
    margin-top: 1em;
    margin-bottom: 1em;
  }
  .navbar-text {
    font-family: 'Space-Grotesk', sans-serif;
    font-size: 15px;
  }
}

/* Header Section */
.header-div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 0.8em;
    margin-bottom: 60px;
    margin-left: 60px;
    margin-right: 60px;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.header-image {
width: 90%;
height: auto;
}

.header-image img {
    width: 100%;
    height: auto;
}

.h1-camille {
    margin-top: 0.1em;
    margin-bottom: 0.3em;
}

.h3-camille {
    margin-top: 0.2em;
}

@media (max-width: 950px) {
    .header-div {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 0.8em;
        margin-bottom: 60px;
        margin-left: 40px;
        margin-right: 40px;
        align-items: center;
        text-align: center;
    }

    p {
        font-family: 'Space-Grotesk', serif;
        font-variation-settings: 'wght' 100;
        font-size: 15pt;
        line-height: 1.5em;
        margin-top: 0.2em;
        color: black;
    }

    h1 {
        font-size: 40pt; 
        line-height: 0.9em;   
    }

    h3 {
        font-size: 20pt;
    }
    
    .header-image {
    width: 80%;
    height: auto;
    }
    
    .header-image img {
        width: 100%;
        height: auto;
    }
    
    .h1-camille {
        margin-top: 0.1em;
        margin-bottom: 0.3em;
    }
    
    .h3-camille {
        margin-top: 0.2em;
    }
}


/* Body Section */
.body-div-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-left: 300px;
    margin-right: 300px;
    margin-bottom: 100px;
    margin-top: 120px;
   justify-content: center;
    gap: 5px;
}


.body-image-1 {
width: 80%;
height: auto;
text-align: center;
}

.body-image-1 img {
    width: 100%;
    height: auto;
}

.question {
    font-family: 'Compagnon-Italic';
    font-variation-settings: 'wght' 200;
    font-size: 17pt;
    color: black;    
}

.gallery-one {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: 40px;
    margin-right: 80px;
    align-items: center;
    gap: 20px;
}

.gallery-one-image {
    width: 60%;
    height: auto;
}

.gallery-one-image {
    width: 100%;
    height: auto;
}

.body-div-2 {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 20px;
    margin-left: 300px;
    margin-right: 300px;
    margin-bottom: 40px;
}

.video-gallery {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    align-items: center;
    margin-bottom: 50px;
}

.video-image {
width: 40%;
height: auto;
}

.video-image img {
    width: 100%;
    height: auto;
}

.gallery-three {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
    margin-bottom: 40px;
    margin-left: 40px;
    margin-right: 80px;
    align-items: center;
    gap: 20px;
}

.gallery-three-image {
width: 70%;
height: auto;
}

.gallery-three-image img {
    width: 100%;
    height: auto;
}

@media (max-width: 950px) {
    .body-div-1 {
        display: grid;
        grid-template-columns: 1fr;
        margin-left: 50px;
        margin-right: 50px;
        margin-bottom: 30px;
        margin-top: 60px;
        align-items: center;
    }
    
    .body-image-div-1 {
        text-align: center;
    }
    
    .body-image-1 {
    width: 100%;
    height: auto;
    }
    
    .body-image-1 img {
        width: 100%;
        height: auto;
    }
    
    .question {
        font-family: 'Compagnon-Italic';
        font-variation-settings: 'wght' 200;
        font-size: 15pt;
        line-height: 1.4em;
        color: black;    
    }
    
    .gallery-one {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 30px;
        margin-bottom: 30px;
        margin-left: 30px;
        margin-right: 30px;
        align-items: center;
        gap: 20px;
    }
    
    .gallery-one-image {
        width: 60%;
        height: auto;
    }
    
    .gallery-one-image {
        width: 100%;
        height: auto;
    }
    
    .body-div-2 {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 30px;
        margin-left: 50px;
        margin-right: 50px;
        margin-bottom: 30px;
    }
    
    .video-gallery {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
        align-items: center;
        margin-bottom: 30px;
    }
    
    .video-image {
    width: 80%;
    height: auto;
    }
    
    .video-image img {
        width: 100%;
        height: auto;
    }
    
    .gallery-three {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 20px;
        margin-bottom: 30px;
        margin-left: 30px;
        margin-right: 30px;
        text-align: center;
        align-items: center;
        gap: 20px;
    }
    
    .gallery-three-image {
    width: 100%;
    height: auto;
    }
    
    .gallery-three-image img {
        width: 100%;
        height: auto;
    }
}


