

@import url('https://fonts.googleapis.com/css?family=Quicksand|Raleway&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Tahoma;
  background-color: rgba(46, 49, 49, 1);
  color: white;
  background-image: url("../img/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: rgb(0,0,0,.6);
  background-blend-mode: overlay;
  overflow-x: hidden;
  overflow-y: scroll;
  }
 
#container {
  width: 70%;
  margin: 0 auto;
  margin-top: 0%;
}

#h1-main {
  display: flex;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 30px;
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  margin-top: 5%;
}

#voyage {
  position: absolute;
  margin-top: 5%;
  font-size: 35px;
}

#h3-main {
  display: flex;
  justify-content: center;
  font-size: 30px;
  font-family: 'Quicksand', sans-serif;
  margin-top: 17%;
}

#p-main {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-family: 'Quicksand', sans-serif;
}

#h1-main, #h3-main, #p-main {
  padding: 20px;
}

#canvas, #text {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: -1;
}


#typewriter__wrapper {
  display: flex;
  justify-content: center;
  padding: 10px;
  margin-top: 40%;
}

#typewriter__wrapper .typewriter__text {
  width: 0;
  margin: 4rem auto 0 auto;
  text-align: center;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

#demo {
  font-size: 25px;
  font-family: 'Quicksand', sans-serif;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.empty_space {
  content: '.';
  visibility: hidden;
  margin-top: 40%;
}

body::-webkit-scrollbar {
    width: 1em;
}
 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
 
body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.item {
  text-align: center;
  margin-bottom: 50px;
}

a, a:hover{
  text-decoration: none;
  color: white;
}

.item img{
  width: 150px;
  max-height: 150px;
  filter: drop-shadow(0px 0px 0px #000);
  transition: 0.3s;

}
.item img:hover {
  width: 170px;
  max-height: 170px;
  filter: drop-shadow(0px 6px 6px #333);
}

.title-icon {
  
}

.title-item {
 font-size: 18px;
 text-transform: uppercase;
}

footer {
  bottom: 0;
  left: 0;
  padding: 20px 0;
  position: fixed;
  right: 0;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
}


@media only screen and (max-width: 320px) {
  body {
    width: 100%;
  }

  #h1-main {
    font-size: 15px;
  }

  #demo {
    font-size: 20px;
  }

  #typewriter__wrapper {
    margin-top: 90%;
  }

  .count {
    margin-top: 5%;
  }
}

