html{
  --bubble: #0c131b;
}
/*
.nav-menu a{
  color: var(--light);
}

.nav_bar-wrap {
  --text: var(--light);
}
*/
img{
  margin: 0px auto;
  position: center;
}
body{
  margin:0 auto;
  max-width: 100%;
}

a.fill-div {
display: block;
height: 100%;
width: 100%;
text-decoration: none;
}
.scroll-down {
position: absolute;
left: 50%;
bottom: 20px;
display: block;
text-align: center;
font-size: 20px;
z-index: 100;
text-decoration: none;
text-shadow: 0;
width: 18px;
height: 18px;
border-bottom: 2px solid var(--text);
border-right: 2px solid var(--text);
z-index: 9;
left: 50%;
-webkit-transform: translate(-50%, 0%) rotate(45deg);
-moz-transform: translate(-50%, 0%) rotate(45deg);
transform: translate(-50%, 0%) rotate(45deg);
-webkit-animation: fade_move_down 2s ease-in-out infinite;
-moz-animation:    fade_move_down 2s ease-in-out infinite;
animation:         fade_move_down 2s ease-in-out infinite;
}

.animate__animated.animate__fadeIn {
  --animate-duration: 2.5s;
}

.floating { 
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  margin-left: 30px;
  margin-top: 5px;
}

@media only screen and (max-width: 768px) {
  .floating { 
    margin-left: 0px;
    margin-top: 8px;
}

@keyframes floating {
  0% { transform: translate(0,  0px); }
  50%  { transform: translate(0, 40px); }
  100%   { transform: translate(0, -0px); }   
}

/*animated scroll arrow animation*/
@-webkit-keyframes fade_move_down {
0%   { -webkit-transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
50%  { opacity: 1;  }
100% { -webkit-transform:translate(0,10px) rotate(45deg); opacity: 0; }
}
@-moz-keyframes fade_move_down {
0%   { -moz-transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
50%  { opacity: 1;  }
100% { -moz-transform:translate(0,10px) rotate(45deg); opacity: 0; }
}
@keyframes fade_move_down {
0%   { transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
50%  { opacity: 1;  }
100% { transform:translate(0,10px) rotate(45deg); opacity: 0; }
}
