* {
    margin: 0;
    padding: 0;
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    font-size: 0.8vw;
}

.presentationcontainer {
    background: #1c1c1c;
    width: 100%;
    height: 100%;
}

.slidecontainer {
    height: 80vh;
    width: 100%;
    padding-block: 10vh;
    display: flex;
    justify-content: center;
}

.slidecontent {
    flex-grow: 1;
    position: relative;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1em;
    overflow: hidden;
    color: white;
    font-size: 1.5em;
    width: 0px;
    background: rgba(0, 0, 0, 0.2);
}

.backbutton,
.forwardbutton {
    font-size: 4.7em;
    text-align: center;
    height: 1.3em;
    width: 1.3em;
    margin-top: 50vh;
    color: #b9b9b9;
    background: rgba(0, 0, 0, 0.3);
    border: 0.05em solid rgba(255, 255, 255, 0.1);
    margin-inline: 0.3em;
    transform: translateY(-150%);
    cursor: pointer;
    transition: 0.2s;
    user-select: none;
    border-radius: 0.2em;
}

.backbutton:hover,
.forwardbutton:hover {
    cursor: pointer;
    color: white;
    transition: 0s;
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.presentationtitlecontainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.presentationtitle {
    font-size: 5em;
    text-align: center;
    width: 12em;
    color: white;
    font-weight: 650;
    text-shadow: 0.1em 0.1em black;
}

.slidecount {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
}

.presentationsubtitle {
    color: white;
    padding-top: 3.5em;
}

.genericslidecontainer {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0.3em;
}

.genericslidetitlecontainer {
    margin-right: 2.7em;
    text-align: left;
    padding-inline: 0.5em;
    border-bottom: 0.1em solid white;
    font-size: 1.8em;
}

.genericslidetitle {
    font-size: 1.7em;
    font-weight: 700;
    white-space: nowrap;
}

.genericslidesubtitle {
    font-size: 0.8em;
    padding-left: 0.9em;
    padding-bottom: 0.5em;
    font-weight: 300;
    color: #ababab;
}

.genericslidecontentcontainer {
    text-align: left;
    padding: 0.4em 0.9em;
    font-size: 1.35em;
}

.ballcanvascontainer {
    height: 3em;
    border: 2px solid;
    border-radius: 0.6em;
    overflow: hidden;
    position: relative;
    margin-block: 0.4em;
}

.ballcanvasname {
    position: absolute;
    top: 0;
    right: 0.2em;
    font-size: 0.9em;
}

canvas {
    filter: drop-shadow(0.3em 0.3em 0px black);
}

.genericslidecontentcontainer ul {
    padding: 0.8em;
}

.genericslidecontentcontainer ul li {
    padding-block: 0.5em;
}

.syntaxcontainer {
    font-size: 0.5em;
    background: #1a1b25;
    padding: 1.2em 1.7em;
    position: relative;
    border-radius: 0.8em;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    overflow: hidden;
}

.syntaxcontainer:before {
    content: 'Javascript';
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2em 0.8em;
    box-sizing: border-box;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-right: 0px;
}

span.hljs-property {
    color: #64cdd9;
}

span.hljs-params {
    color: #ffca6a;
}

.mathcontainer {
    background: #e1e1e1;
    text-align: center;
    margin: 0.5em 0em;
    padding: 0.7em;
    box-sizing: border-box;
    border: 5px solid rgba(0, 0, 0, 0.3);
    position: relative;
}

.mathequationcontainer img {
    height: 2em !important;
    width: unset !important;
}

.mathequationcontainer {
    filter: drop-shadow(0.15em 0.15em 0px rgba(0, 0, 0, 0.3));
}

.mathequationtitle {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.2em 0.5em;
    background: rgba(0, 0, 0, 0.3);
    color: black;
    font-size: 0.6em;
    font-weight: 800;
}

.genericslidecontentcontainer b {
    color: #ff4682;
    font-weight: 600;
}