body {
  background-color: rgb(129, 129, 129);
  color: white;
  margin: 0 !important;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.nav {
  width: 100%;
  padding: 10px 0;
  background-color: #00000094;
  text-align: center;
  position: sticky;
  top: 0;
  backdrop-filter: blur(45px);
}

ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
  font-size: 26px;
  height: 35px;
  line-height: 200%;
  display: inline-block;
}

ol a {
  text-decoration: none;
  color: inherit;
  display: block;
  font-size: 22px;
  padding: 0;
}

ol > li {
  float: left;
  width: 150px;
  height: 40px;
}

.logo {
  margin-left: auto;
  margin-right: auto;
  background-color: rgb(0, 0, 0);
  width: 900px 800px;
  padding: 10px;
}

#elo {
  animation-name: colors;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

@keyframes colors {
  0% {
    color: aqua;
  }

  50% {
    color: darkorchid;
  }

  80% {
    color: deeppink;
  }
  100% {
    color: aqua;
  }
}

#button {
  background: linear-gradient(45deg, #058b00, #40ff00);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

button:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

button:active {
  transform: scale(1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
