*,body {
  transition:all .3s ease 0s;
  -webkit-font-smoothing: antialiased;
} 

body {
  background: white;
  margin: 0;
  padding: 0;
  font-family: "Mukta",sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.7;
}

#main-background {
  background: rgb(223,246,255);
  background: radial-gradient(circle, rgba(223,246,255,1) 0%, rgba(71,181,255,1) 100%);
  min-height: 600px;
  position: absolute;
  z-index: -1;
  width: 100%;
}

#header-ground {
  background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(247,126,33,1) 60%, rgba(247,126,33,1) 100%);
  margin-top: 300px;
  min-height: 100vh;
  width: 100%;
  position: absolute;
}

#main-background canvas{
  position: absolute;
}

#header-navigation li a{
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-left: .5em;
  text-decoration: none;
}


#main-background #header-background{
  position: absolute;
  width: 100%;
  height: 300px;
  display: flex;
  flex-wrap: nowrap;
}

#main-background .hero-waves {
  display: block;
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: 0;
}

header nav ul{
  display: flex;
}

header nav li {
  list-style: none;
}

header li a:hover{
  color: #fef9a7;
}

#header-navigation {
  border-bottom: 1px solid transparent;
  padding-top: 2em;
  margin-bottom: 7em;
  width: 100%;
}

#header-navigation:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
}

#header-navigation .container{
  display: flex;
  justify-content: space-between;

  flex-direction: row;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 150s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 130s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 90s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

header #logo{
  max-height: 40px;
}

.container {
  margin-left:auto;
  margin-right:auto;
  max-width:1130px;
  display: flex;
  flex-direction: column;
}

@media (max-width:1130px) {
  .container {
    padding:0 2em
  }
}

@media (max-width:35.5em) {
  .container {
    padding:0 1em
  }
}

#ranking #spyglass-b{
  z-index: -1;
}

#ranking #spyglass-f{
  z-index: 0;
}

#ranking .spyglass{
  height: 160px;
  margin-top: -80px;
  margin-left: -90px;
  transform: rotate(35deg);
  position: absolute;
}


@media (max-width:35.5em) {
  #ranking .spyglass{
    margin-left: 10%;
  }
}


.button{
  background: #f77e21;
  color: #FFFFFF;
  border-radius: .5em;
  box-shadow: #112532 0 10px 20px -10px;
  box-sizing: border-box;
  cursor: pointer;
  font-weight: 700;
  line-height: 24px;
  opacity: 1;
  outline: 0 solid transparent;
  padding: 8px 18px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  word-break: break-word;
  border: 0;
  text-decoration: none;
}

.button-white {
  background: white;
  color: #112532;
}

footer {
  background-color: #112532;
  margin-top: 3em;
}

footer .container{
  color: white;
  justify-content: space-between;
  padding-top: 1em;
  flex-direction: row;
}


@media (max-width:35.5em) {
  footer .container{
    flex-direction: column;
  }
}

footer .container a{
  text-decoration: none;
  color: white;
}

footer #copyright{
  padding-top: 1em;
  padding-bottom: 1em;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}


.card{
  border-radius: .5em;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background-color: rgba(255, 255, 255, 0.8);
}


.card-header{
  padding: .75em 1.25em;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0,0,0,.125);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: calc(.5em - 1px) calc(.5em - 1px) 0 0;
  display: flex;
  justify-content: space-between;
}

.card-header .card-icon{
  height: 64px;
  position: relative;
  overflow: hidden;
  right: 0;
  margin-top: -20px;
  margin-bottom: -.75em;
}

.card-header img{
  width: 80px;
}

.card-header a{
  color: rgb(24, 24, 24);
  font-weight: 500;
  text-decoration: none;
  font-size: 1.2em;
}

.card-body{
  flex: 1 1 auto;
  padding: 1.25em;
  color: black;
}

table {
  width: 100%;
}

thead {
  text-align: left;
}

img {
  max-width: 100%;
}

#button-change-theme {
  border: 0;
  border-radius: .25em;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  margin-left: auto;
}


a {
  color: rgb(20, 20, 20);
}

h1 {
  font-size: 2.2em;
}