@layer font {
  @font-face {
    font-family: 'EB Garamond';
    src: url("../fonts/EBGaramond-Regular.ttf");
  }
  @font-face {
    font-family: Poppins;
    src: url("../fonts/Poppins-VariableFont_wght.otf");
  }
}


:root {
    --fs-sm: clamp(0.8rem, 0.17vi + 0.76rem, 0.89rem);
    --fs-base: clamp(1rem, 0.34vi + 0.91rem, 1.19rem);
    --fs-md: clamp(1.25rem, 0.61vi + 1.1rem, 1.58rem);
    --fs-lg: clamp(1.56rem, 1vi + 1.31rem, 2.11rem);
    --fs-xl: clamp(1.95rem, 1.56vi + 1.56rem, 2.81rem);
    --fs-xxl: clamp(2.44rem, 2.38vi + 1.85rem, 3.75rem);
    --fs-xxxl: clamp(3.05rem, 3.54vi + 2.17rem, 5rem);
}
body {
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
#hero {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
/* Immersive Spaces for Data, Culture, and Discovery.*/
}

html.js #title,
html.js #subtitle,
html.js #tool-description,
html.js .hero-link-container {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    will-change: transform, opacity;
}

html.js #who-we-are-title,
html.js #who-we-are .who-we-are-description,
html.js #who-we-are .who-we-are-link {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    will-change: transform, opacity;
}

html.js #who-we-are .who-we-are-images {
    opacity: 0;
    will-change: opacity;
}
#title {
    margin: 0;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    /* font-weight: 700; */
    font-size: 15vw;
    /* font-style: italic; */
}
#subtitle {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-weight: 400;
    font-size: var(--fs-lg);
    margin-top: 1rem;
    margin-bottom: 2rem;
}
h3 {
    font-size: var(--fs-lg);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1rem;
}
#tool-description {
    text-align: center;
    width: min(90%, 60rem);
    margin: 0 auto;
    font-size: var(--fs-base);
    font-family: 'EB Garamond', serif;
    line-height: 1.2;
    text-wrap: pretty;
}
.description-text {
    font-size: var(--fs-base);
    font-family: 'EB Garamond', serif;
    line-height: 1.2;
    text-wrap: pretty;
}
.hero-link-container {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}
.hero-link {
    font-size: var(--fs-base);
    font-family: 'Poppins', sans-serif;
    /* font-weight: 300; */
    text-decoration: none;
    color: #fff;
    background-color: #000;
    padding: 0.875rem 2rem;
    border-radius: 3rem;
    border: 1px solid #000;
    margin-top: 1rem;
    display: inline-block;
}

.external-link {
    font-size: var(--fs-sm);
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: #fff;
    background-color: #000;
    padding: 0.875rem 1.5rem;
    border-radius: 2rem;
    margin-top: 1rem;
    display: inline-block;
}
.sub {
    background-color: #f0f0f0;
    color: #000;
    border: 1px solid #000;
}
#who-we-are {
    padding: 2rem;
    min-height: 100vh;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: start;

}

.who-we-are-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    align-self: flex-end;
}

.who-we-are-description {
    width: min(80%, 40rem);
    font-size: var(--fs-base);
    font-family: 'EB Garamond', serif;
    line-height: 1.2;
    text-wrap: pretty;
}

.who-we-are-images img {
    min-width: 0;
    width: 100%;
}
.who-we-are-link {
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .who-we-are-images {
        flex-direction: row;
    }
}
