
h1.home-heading {
    font-size: 3.5em;
    text-align: center;
    margin: auto;
    font-family: var(--spartan-font);
    font-weight: 700;
}

h1.home-heading.orange {
    color: var(--theme-orange);
}

h1.home-heading.cyan {
    color: var(--theme-neon-blue);
}

h3.quote {
    font-size: 2.5em;
    text-align: center;
    font-style: italic;
    width: 100%;
    margin: -10% auto 0 auto;
    color: var(--theme-white);
    font-family: var(--libre-font);
    font-weight: 400;
}

.img-container {
    margin-top: 10%;
}

.img-container img {
    width: 10%;
    margin: 0 45%;
}

.author-container {
    margin-top: 2%;
}

h4.author {
    font-size: 1.75em;
    font-family: var(--spartan-font);
    color: var(--theme-orange);
    text-align: right;
    margin: 0;
    width: 70%;
    font-weight: 500;
}

div.sub-heading-container {
    margin: 20% 0 5% 0;
    text-align: center;
}

h1.fancy-head {
    font-size: 5em;
    color: var(--theme-fancy-head);
    font-family: var(--libre-font);
    font-weight: 400;
    font-style: italic;
    margin: 0;
}

h1.home-heading.sticky {
    margin-top: -4%;
}

.multi-faceted-img img {
    width: 50%;
    margin: 0 25%;
    position: relative;
}

button.facet {
    background: rgba(141, 242, 236, 0.07);
    outline: none;
    border: 3.5px solid var(--theme-neon-blue);
    height: 10vw;
    width: 10vw;
    border-radius: 50%;
    cursor: pointer;
    transition: box-shadow 200ms ease;
}

button.facet:hover {
    box-shadow:
    0 0 4px 2px rgba(141, 242, 236, 0.7),  /* inner white */
    0 0 6px 3px rgba(141, 242, 236, 0.4), /* middle magenta */
    0 0 10px 5px rgba(141, 242, 236, 0.2); /* outer cyan */
}

button.facet img {
    width: 70%;
    margin: auto;
}

div.grid-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-content: center;
    justify-content: center;
}

.grid-section div {
    margin: 5% 0;
}

p.para {
    font-size: 1.25em;
    line-height: 1.5em;
    margin-top: auto;
}

p.para.spl {
    padding: 2%;
    border-radius: 15px;
}

p.para.spl.cyan {
    background-color: rgba(141, 242, 236, 0.2);
}

p.para.spl.blue {
    background-color: rgba(123, 183, 233, 0.2);
}

p.para.spl.orange {
    background-color: rgba(242, 159, 5, 0.2);
}

p.para.spl.grey {
    background-color: rgba(217, 217, 217, 0.2);
}

img.center-img {
    width: 40%;
    margin: 0 25%;
}

div.box {
    padding: 1% 5%;
    font-size: 1em;
    font-family: var(--libre-font);
    border: 2px solid var(--theme-orange);
    border-radius: 70px;
    width: 20%;
    color: var(--theme-white);
    text-align: center;
    margin: 3% auto;
}
/* button.facet.six, button.facet.four, button.facet.five {
    border: 3.5px solid var(--theme-neon-blue);
} */

.illustrations {
    width: 5%;
    position: absolute;
}

.grid-section div img {
    width: 50%;
    margin-left: 25%;
    margin-right: 25%;
}
#sc_main {
    position: relative;
    padding: 5%;
}

#sc_no {
    position: absolute;
}

#sc_chip {
    position: absolute;
}

.tippy-box[data-theme~='igemblue'] {
    background-color: rgba(141, 242, 236, 0.6);
    color: var(--theme-white);
}

p.para.tooltip {
    padding: 2% 0 0% 0;
    font-family: var(--spartan-font);
    font-size: 1.50em;
}

p.para.tooltip.right {
    text-align: right;
}

p.para.tooltip.left {
    text-align: left;
}

p.para.tooltip.center {
    text-align: center;
}

.para.spl {
    font-family: var(--spartan-font);
    font-size: 1.5em;
}

@media (max-width: 768px) {
    img#neuronOne {
        width: 80%;
        margin: 0 10%;
    }

    img#biomarker {
        width: 70%;
        margin: 0 5%;
    }

    div.box {
        width: 40%;
    }
    
    .illustrations {
        width: 10%;
    }

    .sub-heading-container {
        margin: 20% 0 10% 0;
    }

    h1.home-heading {
        font-size: 2.5em;
    }

    h3.quote {
        font-size: 1.5em;
    }

    div.author-container {
        text-align: right;
    }
    h4.author, h3.author {
        font-size: 1.20em;
    }
}

@media (max-width: 540px) {
    div.grid-section {
        grid-template-columns: 1fr;
    }

    div.box {
        width: 60%;
    }

    .multi-faceted-img img {
        width: 70%;
        margin: 0 15%;
        position: relative;
    }

    h1.home-heading {
        font-size: 2em;
    }

    h3.quote {
        font-size: 1.20em;
    }

    div.author-container {
        text-align: right;
    }
    
    h4.author, h3.author {
        font-size: 1.0em;
    }
}