body{
  color: white;
  background-color: #222;
  min-height: 100vh;
}

input::placeholder{
  color: gainsboro !important;
}

.hidden-input{
  all: unset;
  text-align: end;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.dropdown-item:hover{
  cursor: pointer;
}

footer{
  background-color: #111111;
}

footer ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

footer a{
  color: chocolate;
  text-decoration: none;
  transition: all 0.25s;
}

footer a:hover{
  color: rgb(219, 133, 72);
  font-weight: bold;
}

.nav-item{
  cursor: pointer;
  transition: all 0.25s;
}
.nav-link{
  color: rgb(0, 162, 255);
}
.nav-link:hover{
  color: aqua;
}