html {
    overflow: scroll;
}

#main-content {
    scrollbar-gutter: stable;
}

.glossary {
    background-color: aliceblue;
}

.carousel-item {
    height: 600px
}

.carousel-text-container {
    padding-top: 60px;
}

#svg-container {
    position: relative
}

#central-disc {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.logo-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

#central-buttons-container {
    position: absolute;
    left: 50%;
    top: 48%;
    z-index: 0;
    -ms-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
}

.circle {
    height: 100%;
    border-radius: 100%;
    text-align: center;
    padding: 1px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.option:hover {
    border-color: grey;
}

.circle span {
    line-height: normal;
    display: inline-block;
    vertical-align: middle;
    color: black;
    fill: black;
    stroke: black;
    opacity: 1;
}

.circle.option {
    cursor: pointer;
}

.circle.option span {
    cursor: pointer;
}

.circle.option.active {
    text-decoration: underline;
}
span.category {
    hyphens: auto; 
}

.citation {
    text-indent: -1em;
    list-style: none;
}

.citation:first-line {
    text-indent: 0em;
}

@media (max-width: 1200px){
    html {
        font-size: 95%;
    }
    .circle {
        font-size: 115%;
    }
}

@media (max-width: 992px){
    html {
        font-size: 85%;
    }
    .circle {
        font-size: 125%;
    }
}

@media (max-width: 768px){
    html {
        font-size: 75%;
    }
    .circle {
        font-size: 145%;
    }
}

@media (max-width: 576px){
    html {
        font-size: 65%;
    }
    .circle {
        font-size: 160%;
    }
}