html {
    scroll-behavior: smooth;
}

.glossary-container {
    width: 100%;
    margin-top: 5rem;
}
@media (max-width:800px) {
    .glossary-container {
        margin-top: 1rem;
    }
}

.glossary-container-content {
    display: grid;
    grid-template-columns: 1fr minmax(0, 680px) 1fr;
    gap: 60px;
    align-items: start;
}
@media (max-width:800px) {
    .glossary-container-content {
        display: flex;
        flex-flow: column;
        gap: 0;
    }
}

.glossary-content-left {
    grid-column: 1;
}
@media (max-width:800px) {
    .glossary-content-left {
        width: 100%;
    }
}

.glossary-content-center {
    grid-column: 2;
}
@media (max-width:800px) {
    .glossary-content-center {
        margin: 0px 15px;
    }
}

.glossary-content-right {
    grid-column: 3;
}

.glossary-sticky {
    position: sticky;
    top: 0;
    z-index: 0;
}