* {
  padding: 0;
  margin: 0;
  background-color: transparent;
  box-sizing: border-box;
}
body::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-image:  linear-gradient(   #EB6952 20%,
  #FAAD17 20% 40%,
  #7E46DD 40% 60%,
  #4FA6DB 60% 80%,
  #B3B3B3 80%
);;
}

body::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb
{
	background-color: #F90;	
	background-image: -webkit-linear-gradient(#EB6952 20%,
  #FAAD17 20% 40%,
  #7E46DD 40% 60%,
  #4FA6DB 60% 80%,
  #B3B3B3 80%
);
box-shadow: 1rem 1rem 1rem 1rem rgba(0,0,0,1);
}

.nav-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 3.5%;
  right: 50%;
  z-index: 200;
}
.nav-links a {
  text-decoration: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #EB6952;
  text-align: center;
  -webkit-background-clip: text;
}

.nav-links li {
  display: inline-block;
  text-decoration: none;
  list-style: none;
  font-weight: bold;
}

.nav-link {
  position: relative;
}

.active {
  left: 0;
  bottom: -2;
  width: 100%;
  background-color: rgb(138, 43, 226);
  border-radius: 1rem;
  height: 0.2rem;
}

footer .content_inner {
  padding: 100px;
  margin: 0;
  padding-bottom: 10px;
  color: white;
}

footer .copy {
  background: #e9e6dc;
  border: 1px solid #2e2e27;
}

footer .fixed_footer {
  width: 100%;
  height: 70px;
}

footer .nav {
  display: flex;
 justify-content: center;
}

footer li {
  list-style: none;
  font-family: sans-serif;
  text-transform: uppercase;
  font-size: 0.8em;
  margin: 1rem;
  display: inline-block;
  letter-spacing: 0.1px;
  line-height: 30px;
}

footer .col li:first-child {
  font-weight: bolder;
}

@media (max-width: 600px  ) {
  footer .content_inner {
    padding: 30px;
    padding-bottom: 3px;
  }
  footer li {
    margin: 0.2rem;
  }
  
  /* .ham{
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 70%;
    background-color: black;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hamB {
    flex-direction: column;
    left: 0;
    top: 30%;
    margin-left: 1rem;
  }
  .hamB>div {
     width: 100%;
  } */
}
/* .s {
  fill: white;
  animation: rainbow 2s infinite;
}

@keyframes rainbow {
  0% {
    fill: blueviolet;
  }
  25% {
    fill: #242424;
  }
  50% {
    fill:brown;
  }
  75% {
    fill:aqua;
  }
  100% {
    fill:orange;
  }
}  */