html {
    height: 100vh;
    overflow: scroll;
    overflow-x: hidden;
    background: #111010;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Mono', monospace;
    margin: 0;
    padding: 0;
}

@media (max-width: 450px) {
  nav #home {
      pointer-events: none;
      color: grey;
      text-decoration: line-through;
  }

  footer{
    max-width: 90%;
  }

  footer .footer-content .socials{
    margin: 1rem 0 1rem 0;
  }

  footer .footer-content .socials li{
    margin: 0 45%;
  }
}

@media (max-width: 760px){
  nav #home {
      pointer-events: none;
      color: grey;
      text-decoration: line-through;
  }
}

/*Style the preloader*/
#preloader{
    background: #0b1424 url(/assets/gifs/preloader/loading.gif) no-repeat center center;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}

/*Style the scrollbar*/
::-webkit-scrollbar{
    width: 0.6em;
}

::-webkit-scrollbar-track{
    background: #111010;;
}

::-webkit-scrollbar-thumb{
    background: rgba(145, 145, 145, 0.5);
    border-radius: 100vw;
}

::-webkit-scrollbar-thumb:hover{
    background-color: rgba(119, 118, 118, 0.9);
}

/* header*/
nav{
    padding-top: 1%;
    text-align: center;
}

nav ul li{
    list-style-type: none;
    display: inline-block;
    padding: 10px 20px;
}

nav ul li a{
    color: #D3DBE5;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Signika Negative', sans-serif;
    letter-spacing: 0.1em;
    font-size: 0.9em;
}

nav ul li a:hover{
    color: #287EE8;
    transition: 0.8s;
}
/*--------------------------------------------------------------------*/

/*style the hero*/
#Dotted-Line {
    animation: connection 0.4s infinite linear normal;
  }
  
  @keyframes connection {
    0% { stroke-dashoffset: 10;  }
    100% { stroke-dashoffset: 22;  }
  }
  
  #Dotted-Line2 {
    animation: connection 0.4s infinite linear reverse;
  }
  
  #in-session {
    animation: in-session-animatioin 1.6s infinite linear normal;
  }
  
  @keyframes in-session-animatioin {
    0% { stroke-dasharray: 4; stroke-dashoffset: 16;  }
    100% { stroke-dasharray: 16; stroke-dashoffset: 4;  }
}

/*style the timeline*/
  .container {
    padding: 2rem;
    padding-bottom: 400px;
    margin: 0 auto;
    max-width: 800px;
  }
  
  .top-section {
    color:#e5ddd3;
    text-align: center;
    padding: 4rem 0;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .timeline {
    position: relative;
    min-height: 150px;
  }

  .timeline p{
    color: #e5ddd3;
  }

  .timeline h2{
    color: #e5ddd3;
  }

  .timeline__line {
    position: absolute;
    z-index: 2;
    left: calc(50% - 1px);
    width: 2px;
    top: -50px;
    bottom: -50px;
    background-color: #EDD6BB;
    display: none;
  }

  .timeline__line:before, .timeline__line:after {
    position: absolute;
    display: block;
    content: "";
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    background-color: #a566cf;
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline__line:after {
    bottom: 0;
  }

  .timeline__section {
    display: flex;
    opacity: 0;
    transform: translatex(-100%);
    transition: 600ms ease;
    position: relative;
    z-index: 1;
    margin: 50px 0;
    padding: 1rem;
    border-radius: 1rem;
    align-items: center;
    min-height: 300px;
  }

  .timeline__section:nth-child(odd) {
    flex-direction: row-reverse;
    transform: translatex(100%);
  }

  .timeline__section__bead {
    position: absolute;
    display: block;
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    background-color: #EDD6BB;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
  }

  .timeline__section__content {
    width: calc(50% - 2rem);
  }
  
  .show-me:nth-child(n) {
    transform: none;
    opacity: 1;
  }

  .downloads{
    list-style: none;
    display: flex;
}

.downloads li{
    margin: 0 12%;
    transform: translateX(-270%) translateY(160%);
}

.downloads a{
    text-decoration: none;
    color: rgb(105, 105, 105);
}

.downloads a ion-icon{
    font-size: 1.8rem;
    transition: color .4s ease;
}


.downloads a:hover ion-icon{
    color: #EDD6BB;
}

/*Style the footer*/
footer{
    position: relative;
    padding-bottom: 2%;
    background: transparent;
}

.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 2rem 0;
}

.socials li{
    margin: 0 85%;
}

.socials a{
    text-decoration: none;
    color: rgb(105, 105, 105);
}

.socials a ion-icon{
    font-size: 1.8rem;
    transition: color .4s ease;
}


.socials a:hover ion-icon{
    color: #EDD6BB;
}