* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font: 400 16px / 1.5 Varela-Round, sans-serif;
  scroll-behavior: smooth;
}

@import url(https://fonts.bunny.net/css?family=exo:200|la-belle-aurore:400|varela-round:400);
@-webkit-keyframes bg-scrolling-reverse {
  100% {
    background-position: 50px 50px;
  }
}
@-moz-keyframes bg-scrolling-reverse {
  100% {
    background-position: 50px 50px;
  }
}
@-o-keyframes bg-scrolling-reverse {
  100% {
    background-position: 50px 50px;
  }
}
@keyframes bg-scrolling-reverse {
  100% {
    background-position: 50px 50px;
  }
}
@-webkit-keyframes bg-scrolling {
  0% {
    background-position: 50px 50px;
  }
}
@-moz-keyframes bg-scrolling {
  0% {
    background-position: 50px 50px;
  }
}
@-o-keyframes bg-scrolling {
  0% {
    background-position: 50px 50px;
  }
}
@keyframes bg-scrolling {
  0% {
    background-position: 50px 50px;
  }
}
/* Main styles */
body {
  margin-top: 13.5rem;
  color: #999;
  text-align: center;
  /* img size is 50x50 */
  background: url("https://www.toptal.com/designers/subtlepatterns/uploads/tactile_noise.png") repeat 0 0;
  -webkit-animation: bg-scrolling-reverse 10s infinite;
  /* Safari 4+ */
  -moz-animation: bg-scrolling-reverse 2s infinite;
  /* Fx 5+ */
  -o-animation: bg-scrolling-reverse 2s infinite;
  /* Opera 12+ */
  animation: bg-scrolling-reverse 2s infinite;
  /* IE 10+ */
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}
h1{
  font-size: 60px;
  font-family: 'Varela Round', sans-serif;
  color: #66cc66;
}
img{
  width: 25vh;
  top: 5vh;
  }

h2{
  color: #c0ab0d;
  font-size: 30px;
  font-family: 'Varela Round', sans-serif;
  }
h3{
  color: #b86001;
  font-size: 20px;
  }
h4{
  color: #bc1f09;
  font-size: 20px;
  }
h5{
  color: #af86ff;
  font-size: 20px;
}
h6{
  color: #35acf9;
  font-size: 20px;
}
a{
  text-decoration: none;
  color: #939393;
}

header {
  padding: 0 20px;
  background-color: #252525;
  height: 50px;
  display: flex;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 6;
  top: 0;
}

#brand {
  font-family: 'Exo', sans-serif;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
}

#brand a {
  color: #35acf9;
  font-family: 'Varela Round', sans-serif;
}

ul {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.menuitem a {
  color: #6292b3;
  font-size: 30px;
  font-family: 'Varela Round', sans-serif;
}

.support a {
  color: #cccccc;
  border-radius: 15px;
  border: 3px;
  font-size: 30px;
  font-family: 'Varela Round', sans-serif;
}

.join a {
  color: #ffae00;
  border-radius: 15px;
  border: 3px;
  font-size: 30px;
}

ul li {
  padding: 5px;
  margin-left: 10px;
  border-radius: 15px;
}

ul li:hover {
  transform: scale(1.1);
  transition: 1s;
}

ul li a:hover{
  color: #66cc66;
  transition: 1s;
}

ul li:after {
  transform: scale(1);
  transition: 1s;
}

#login,
#signup {
  border-radius: 5px;
  padding: 5px 8px;
}



#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: #35acf9;
  margin: 6px 0;
  transition: 0.5s;
  border-radius: 25px;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu {
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: opacity;
  animation: fadein 1s;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translate(0, +50px);
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.mobile-menu {
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transition: opacity;
  animation: fadeout 1s;
  position: absolute;
  top: 50px;
  left: 0;
  height: calc(100vh - 50px);
  width: 100%;
  z-index: 5;
  background-color: #252525;
}

@keyframes fadeout {
  from {
    opacity: 1;
    display: flex;
    transform: translate(0, 0);
  }

  to {
    opacity: 0;
    display: none;
    transform: translate(0, +50px);
  }
}

.mobile-menu li {
  margin-bottom: 10px;
}

@media only screen and (max-width: 500px) {
  header nav {
    display: none;
  }

  #hamburger-icon {
    display: block;
  }
}

#Home{
  min-height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
}

#Experiences{
  min-height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.ScrollDown{
  position: absolute;
  top: 90vh;
  text-align: center;
  width: 100%;
  color: #35acf9;
  font-size: 40px;
  animation: scroll-down 1s ease-in-out infinite;
}

@keyframes scroll-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

.Story{
  border-radius: 35px;
  border: 3px solid #35acf9;
  width: 300px;
  margin: 5px;
}

.Story:hover{
  border-color: #66cc66;
  transition: 1s;
  transform: scale(1.1);
}

.StoryDesc{
  font-size: 20px;
  font-family: 'Varela Round', sans-serif;
}

.Button1{
  background-color: #35acf9;
  color: #66cc66;
  border-radius: 15px;
  padding: 10px 20px;
  font-size: 30px;
  font-family: 'Varela Round', sans-serif;
  cursor: pointer;
  border-width: 0;
  margin: 5px;
}

.Button1:hover{
  background-color: #66cc66;
  color: #35acf9;
  transition: 1s;
  transform: scale(1.1);
}

.abtn{
  text-decoration: none;
  cursor: pointer;
}

#About{
  min-height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.stats{
  display: flex;
  align-items: center;
  align-content: space-evenly;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}

.countup{
  font-size: 50px;
  font-family: 'Varela Round', sans-serif;
  color: #35acf9;
  text-align: center;
}

.link{
  font-size: 25px;
  font-family: 'Varela Round', sans-serif;
  color: #66cc66;
}

.footer-text{
  font-size: 15px;
  font-family: 'Varela Round', sans-serif;
  color: #808080;
  position: relative;
  bottom: 0.01vh;
}

