html {
    height: 100vh;
    scroll-behavior: smooth;
}

body {
    background: #000;
    /* height: 800vh; */
}

/*---navigation bar ---*/
.fixed-top.scrolled {
    background-color: #000 !important;
    transition: background-color 300ms linear;
  }
  
  .nav-link,.navbar-brand{
    color: #fff;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-size: 1em;
  }
  
  .nav-link{
    margin-right: 1em !important;
  }
  
  .nav-link:hover{
    color: #15aeb5;
  }
  
  .navbar-collapse{
    justify-content: flex-end;
  }

canvas {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-height: 100vh;
    min-width: 100vw;
    z-index: -100;
}

div {
    z-index: 100;
}

body::-webkit-scrollbar{
    display: none;
  }

.header{
    /* position: absolute; */
    /* left: 5%; */
    /* top: 40%; */
    /*transform: translate(-50%, -55%);*/
    /* height: 100vh; */
    /* text-align: left; */
    font-family: 'Open Sans', sans-serif;
    cursor: default;
}

.header h1{
    color: #FEF8E8;
    font-weight: lighter;
    font-size: 100px;
}

.header p{
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.5;
}

.fab, .fas {
    font-size: 40px;
    width: 40px;
    text-align: center;
    text-decoration: none;
    background-color: transparent;
    color: #FEF8E8;
}

section {
    width: 100%;
    display: table;
    margin: 0;
    max-width: none;
    min-height: 100vh;
  }

.content{
    font-family: 'Open Sans', sans-serif;
    color: #FEF8E8;
    font-size: 1.3rem;
    line-height: 1.5;
/*  */
    /* display: table-cell; */
    /* vertical-align: middle; */
    /* padding-top: 60px; */
  }

.filled {
    background: rgba(0, 0, 0, 0.9);
}

p a{
    color: #777777;
}

/* Horizontal Rule */

hr {
    color: aqua;
}

hr.short{
    width: 8%;
    border-top: 6px solid;
}
  
hr.left {
  text-align: left;
}
  
hr.right {
  text-align: right;
} 