html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* CSS reset END */

/* Desktop CSS config */

body {
    background-color: #000000;
}

#hero {
    height: 100vh;
    width: 100%;
}

#heroBlank {
    height: 110px;
    width: 100%;
}

#heroImg {
    position: absolute;
    width: 60%;
    height: auto;
    z-index: 10;
    right: 5%;
    top: -10%;
}

#icon {
    position: absolute;
    right: 50px;
    top: 10px;
    width: 200px;
    height: auto;
}

a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 25px;
    z-index: inherit;
    transition: 200ms;
}

a:hover {
    text-shadow: rgba(255, 255, 255, 1) 0px 0px 16px;
}

#topBar {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 500;
}

.current {
    background: linear-gradient(to bottom right, #00bbff, #4800ff, #00bbff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: rgba(0, 0, 0, 0.4) 4px 4px 8px;
    z-index: inherit;
}

#navigation {
    background: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0));
    height: 60px;
    padding: 30px 20px 20px 5px;
    z-index: inherit;
}

#navList {
    display: flex;
    text-align: center;
    max-width: 90%;
    margin: 0;
    height: 35px;
    padding: 6px;
    z-index: inherit;
}

#navList li a {
    margin: 30px;
    z-index: inherit;
}

#gradient {
    background: linear-gradient(to right, rgba(0, 110, 255, 0.3), rgba(0, 110, 255, 0));
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

@keyframes bounce {
    0% {
        transform: translateY(-20px);
    }
  
    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(-20px);
    }
  }

#arrow {
    position: absolute;
    font-size: 70px;
    z-index: 100;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 50px;
    animation-duration: 1s;
    animation-name: bounce;
    animation-iteration-count: infinite;
}

#heroText {
    z-index: 15;
    font-size: 60px;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    position: absolute;
    top: 35%;
    left: 7%;
    width: 500px;
}

#body {
    position: relative;
}

.illustration {
    width: 80%;
    height: auto;
    margin: 50px 0;
}

.bodyParent {
    position: relative;
}

#cap {
    animation: appear 0.25s linear infinite;
    animation-iteration-count: 1;
    animation-fill-mode: both;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    opacity: 0;
}

#battery {
    animation: appear 0.5s linear infinite;
    animation-iteration-count: 1;
    animation-fill-mode: both;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    opacity: 0;
}

#microcontrollers {
    animation: appear 0.65s linear infinite;
    animation-iteration-count: 1;
    animation-fill-mode: both;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    opacity: 0;
}

#electrodes {
    animation: appear 0.85s linear infinite;
    animation-iteration-count: 1;
    animation-fill-mode: both;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    opacity: 0;
}

#bottom {
    animation: appear 1s linear infinite;
    animation-iteration-count: 1;
    animation-fill-mode: both;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    opacity: 0;
}

@keyframes appear {
    0%,
    80% {
        opacity: 0.1;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
  }

.bodyParagraph {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    position: absolute;
    left: 60%;
    right: 10%;
    top: 50px;
}

.bodyParagraph h1 {
    font-size: 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
}

.bodyParagraph p {
    margin: 20px 0;
    line-height: 40px;
}

#highlight {
    background: linear-gradient(to bottom right, #00bbff, #4800ff, #00bbff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#technology {
    display: block;
    text-align: center;
    font-size: 40px;
    position: relative;
    margin: 60px auto;
    margin-top: 0;
    border-radius: 5em;
    padding: 10px;
    width: 300px;
    height: 40px;
    background-color: white;
    color: black;
    font-weight: bold;
}

#technology:hover {
    text-shadow: none;
    transform: scale(1.05);
    background-color: black;
    color: white;
    box-shadow: rgb(0, 110, 255) 0 0 16px;
}

#demoImg {
    width: 100%;
    height: 100%;
    position: absolute;
}

.heading {
    text-align: center;
    color: white;
    font-size: 48px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 40px 0;
}

.heading_Large {
    text-align: center;
    color: white;
    font-size: 70px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 40px 0;
}

.heading_L {
    text-align: left;
    color: white;
    font-size: 48px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 40px 160px;
}

.gradient_Heading_Large {
    background: linear-gradient(to bottom right, #00bbff, #4800ff, #00bbff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 60px;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 20px 0;
}

.paragraph {
    color: white;
    font-size: 24px;
    font-family: arial;
    line-height: 48px;
    margin: 20px 160px;
}

.paragraph_narrow {
    color: white;
    font-size: 24px;
    font-family: arial;
    line-height: 48px;
    margin: 20px 260px;
}

#historyImg {
    display: block;
    margin: 60px auto;
    width: 50%;
    height: auto;
}