@font-face {
    font-family: 'MeridienRoman';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/MeridienRoman.ttf') format('truetype');
  }

  /* @font-face {
    font-family: 'MeridienMedium';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/Meridien-Medium.ttf') format('truetype');
  } */

  :root {
    --font-size-base: 16px;
    --font-size-small: 0.75rem;
    --font-size-large: 1.25rem;
    --font-color: white;
    --padding-main: 3rem;
  }

html {
    font-size: var(--font-size-base);
}
body {
    /* font-family: serif; */
    font-family: "MeridienRoman", serif;
    line-height: 1.4;
    letter-spacing: 0.04rem;
}



body, main {
    width: 100vw;
    height: 100vh;
}


#gallery-container {
    width: 100vw;
    /* set 60% height */
    height: 0;
    padding-bottom: 100vh;
}
/* .lg-container {
    display: block;
} */
.lg-outer .lg-object, .lg-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.lg-outer.lg-grab img.lg-object {
    cursor: auto;
  }

footer {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100vw;
    /* height: 40vh; */
    padding: 3rem 6rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    z-index: 2;
}

nav {
    grid-column: 2 / span 2;
    order: 1;
    display: flex;
    justify-content: center;
    padding: 0 0 1rem 0;
    font-size: var(--font-size-small);
    text-align: center;
    text-transform: uppercase;
}

#logo {
    grid-column: 4 / span 1;
    order: 2;
    display: flex;
    justify-content: flex-end;
}
#logo img { 
    height: 160px;
    width: auto;
}


@media screen and (max-width: 758px) {
    footer {
        grid-template-columns: 1fr;
        padding: 4rem;
    }
    nav {
        grid-column: 1 / span 1;
        order: 2;
        padding: 2rem 0 0 0;
        text-align: left;
    }
    #logo {
        grid-column: 1 / span 1;
        order: 1;
    }
    #logo img { 
        height: 200px;
    }
}


a, a:hover {
    color: var(--font-color);
    text-decoration: none;
}