body {
    background-color: #3498db;
    overflow: hidden;
}

h1 {
    font-family: 'Roboto Mono', monospace;
    font-weight: 600;
    font-size: 2vmin;
    background-color: #f6e58d;
    width: fit-content;
    padding: 8px 12px 8px 12px;
}

p, li {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.5vmin;
    font-weight: 300;
}

li {
    line-height: 3vmin;
}

.boldSans {
    font-weight: 600;
}

.regularCaseSans {
    text-transform: none !important;
}

.boldMono {
    font-weight: 800;
}

.topMargin {
    margin-top: 5vmin !important;
}

/* .title {
    width: 90vw;
    margin-left: 5vw;
    margin-top: 5vmin;
    margin-bottom: 62px;
} */

.aboutSection > h1 {
    font-family: 'Open Sans', sans-serif;
    color: #000;
    margin-top: 5vmin;
    font-size: 2.2vmin;
    text-transform: uppercase;
}

.aboutSection > p {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    font-size: 1.5vmin;
}

/* .smallPrint {
    font-size: 1vmin;
    font-weight: 800;
    margin-top: 28px;
} */

/* .title > h1 {
    font-family: 'Open Sans', sans-serif;
    color: #ffda79;
    margin-top: 5vmin;
    margin-bottom: 2.5vmin;
    font-size: 64px;
} */

.userGuide {
    display: grid;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    padding: 0;
    margin: 0;
}

.contentHolder {
    display: grid;
    width: 90vw;
    height: 90vh;
    height: 90svh;
    align-self: center;
    justify-self: center;
    grid-template-columns: 25% 75%;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.sideBar {
    border-right: 1px solid #3498db;
    padding-left: 5%;
    padding-right: 5%;
    background-color: #ffda79;
    overflow-y: scroll;
}

.sideBarItem {
    display: grid;
    grid-template-columns: 10% 90%;
    align-items: first baseline;
}

a {
    color: #111;
}

.sideBarTitle {
    font-weight: 600;
    margin-bottom: 2.5vmin;
    margin-top: 5vmin;
}

.sideBarTitle:first-child{
    margin-top: 5.25vmin;
}

.mainContent {
    padding-left: 5%;
    padding-right: 5%;
    scroll-behavior: smooth;
    overflow-y: scroll;
}

/* Code below to offset jump to */

:target:before {
    content: "";
    display: block;
    height: fit-content;
}

.helpSection:first-child {
    margin: 0;
    padding: 0;
    margin-top: 3vmin;
}

.helpSection {
    margin: 0;
    padding: 0;
    margin-top: 9vmin;
}

.helpSection:last-child{
    margin-bottom: 6vmin;
}

.smallNum {
    font-size: 1vmin;
    margin-right: 1vmin;
}

.categoryTitle {
    font-family: 'Roboto Mono', monospace;
    font-weight: 600;
    font-size: 2vmin;
    color: #fff;
    text-transform: uppercase;
    margin-top: 2.5vmin;
    margin-bottom: 6vmin;
    background-color: #333;
    width: fit-content;
    padding: 8px 12px 8px 12px;
}

/* -------------------------------------------------------------------------- */
/*                            IMAGE CLICK LIGHTBOX                            */
/* -------------------------------------------------------------------------- */

.lightboxImage {
    max-width: 20vw;
    display: flex;
    flex-direction: column;
    padding-top: 2.5vmin;
    padding-bottom: 2.5vmin;
}

.lightboxImage > a > img {
    max-width: 20vw;
    border-radius: 1vmin;
    border: 4px solid #eee;
}

.lightboxImage > p {
    font-size: 1vmin;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    align-self: center;
    text-align: center;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .95);
    text-decoration: none;
}

.lightbox:target {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightboxImage > .lightbox > img {
    max-width: 80vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    border: 4px solid #333;
}

.lightboxImage > .lightbox > p {
    margin: 0;
    align-self: center;
    color: #eee;
    margin-top: 2.5vmin;
    font-size: 1.5vmin;
    text-align: center;
    text-transform: uppercase;
}

/* -------------------------------------------------------------------------- */
/*                                   PANELS                                   */
/* -------------------------------------------------------------------------- */

.questionPanel, .importantPanel, .tipPanel {
    display: grid;
    grid-template-columns: 1fr 10fr 2fr;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: fit-content;
    border-radius: 1vmin;
    background-color: #baebe1;
    margin: 5vmin 0 5vmin 0;
    padding: 0;
    box-shadow: rgba(0, 0, 0, .1) 0px 2px 4px 0px inset;
    padding-top: 1vmin;
    padding-bottom: 1vmin;
}

.importantPanel {
    grid-template-columns: 1fr 12fr;
    background-color: #ffcbcb;
}

.questionPanel > .panelText {
    justify-self: start;
    padding-left: 1vmin;
    padding-right: 2.5vmin;
}

.tipPanel {
    grid-template-columns: 1fr 12fr;
    background-color: #fff4d7;
}

.tipPanel > div > p {
    padding-left: 1vmin;
    padding-right: 2.5vmin;
}

.importantPanel > div {
    justify-self: start;
}

.importantPanel > div > p {
    padding-left: 1vmin;
    padding-right: 2.5vmin;
}

.punctuationMark > svg {
    width: 3vmin;
    fill: #34495e;
}

.punctuationMark > p {
    margin: 0;
    padding: 0;
    font-size: 1.2vmin;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    color: #34495e;
}

.questionPanel > span > p, .importantPanel > div > p, .tipPanel > div > p {
    font-family: 'Open Sans', sans-serif;
    color: #2c3e50;
    font-size: 1.4vmin;
    text-transform: uppercase;
}

.answerButton {
    width: 80%;
    height: 90%;
    background: rgb(72, 201, 176);
    background: linear-gradient(90deg, rgba(72, 201, 176, 1) 0%, rgba(26, 188, 156, 1) 100%);
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,
            rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #16a085 0 -3px 0 inset;
    margin: 0;
    padding: 0;
    border-radius: 1vmin;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.answerButton > p {
    font-family: 'Open Sans', sans-serif;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 800;
}

.resourceSubtitle {
    display: block;
    padding-top: 32px;
}