h1{
    margin-top: 80px;
}
h2{
    color: #fff;
}
.whiteBg{
    background-color: #fff;
    padding: 6rem 2rem;
    color: #333;
}
.whiteBg > div{
    padding: 15px 0;
}
.moreContent{
    display: block;
    overflow: hidden;
    font-family: 'VT323', monospace;
    margin: 15px 0;
    height: 0;
    transition: height 0.5s ease;
}
.moreTrigger:hover{
  text-decoration: none;
}
.moreContent.show {
  display: block;
}

.moreContent.expanded {
  height: 100%;
}

.symbol{
  margin-left: 0.5rem;
}
a.moreTrigger:hover .symbol {
    text-decoration: none !important;
}
.tenPackItem{
    margin: 10px 0;
    color: #fff;
}
.tenPackContain{
  background-color: #333;
}
.tenPackImage{
  background-image: url("/static/assets/img/homebot.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 400px;
}
.tenPack ol {
    margin-top: 30px;
    display: block;
    list-style: none;
    background: #333;
    overflow: hidden;
    counter-reset: numList;
    max-width: 800px;
}
.tenPack ol li {
    position: relative;
    min-height: 100px;
    text-align: left;
}
.tenPack ol li:before {
    counter-increment: numList;
    content: counter(numList);
    float: left;
    position: absolute;
    left: -32px;
    
    font: bold 12px sans-serif;
    text-align: center;
    color: #333;
    line-height: 25px;
    
    width: 25px; height: 25px;
    background: #fff;
    
    -moz-border-radius: 999px;
    border-radius: 999px
}
.startBanner{
    margin: 80px 0 70px;
}
.home-start-btn{
    border: 4px solid #FFB800;
}



.hero-section{
    /* Sizing */
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    
    /* Flexbox stuff */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Text styles */
    text-align: center;
    color: white;
    
    /* Background styles */
    background-image: url('/static/assets/img/cute-robot-dark.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}