html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(#0d1d31 0%, #0c0d13 100%);
  background-size: 100%;
  color: white;
  font-family: 'Courier', monospace;
}

.navigationbar {
  background-image: linear-gradient(#c7c7c7, white);
  overflow: hidden;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 4px 0 rgba(255, 255, 255, 0.2), 0 3px 15px 0;
  transition-duration: 0.2s;
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  margin: auto;
}

.navigationbar a {
  text-align: left;
  padding: 10px;
  text-decoration: none;
  font-size: 19px;
  color: black;
  transition-duration: 0.2s;
}

.navigationbar a:hover {
  opacity: 20px;
  background-color: #808080;
  transform: scale(1.05);
  transition-duration: 0.2s;

}

.navigationbar a.active {
  background-color: #011726;
  color: white;
}


header {
  margin-top: 10px;
  font-size: 50px;
  text-align: center;
  font-family: 'Courier', monospace;
  font-weight: bolder;
  padding: 100px;
}


@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, 7px);
  }

  100% {
    transform: translate(0, -0px);
  }
}

.basic {
  border-radius: 10px;
  text-align: center;
  max-width: 250px;
  padding: 1rem;
  position: relative;
  background: linear-gradient(to right, rgb(112, 67, 67), rgb(139, 92, 58));
  place-items: center;
  margin: 10px;
  ou
}

.Premium {
  border-radius: 10px;
  text-align: center;
  max-width: 250px;
  padding: 1rem;
  position: relative;
  background: linear-gradient(to right, rgb(187, 158, 25), rgb(255, 247, 0));
  place-items: center;
  margin: 10px;
  color: rgb(0, 0, 0)
}

.buy {
  border-radius: 10px;
  padding: 10px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  color: #011726;
  box-shadow: 0 5px 4px 0 rgba(255, 255, 255, 0.2), 0 3px 15px 0;
}

.buy:hover {
  background-color: rgba(221, 255, 0, 0.132);
  transform: scale(1.05);
  transition-duration: 0.2s;

}

.buybasic {
  border-radius: 10px;
  padding: 10px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  color: #0a2601;
  box-shadow: 0 5px 4px 0 rgba(255, 255, 255, 0.2), 0 3px 15px 0;


}

.buybasic:hover {
  background-color: rgba(247, 181, 0, 0.237);
  transform: scale(1.05);
  transition-duration: 0.2s;
}
