body {
  background-color: hsl(0, 0%, 5%);
  animation: LoadIn 2s;
  font-family: Nato Sans;
}

img {
  width: 80%;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#Display {
  background-color: hsl(0, 0%, 90%);
  box-shadow: 1px 1px 5px hsl(0, 0%, 70%);
  color: hsl(0, 0%, 20%);
  height: 350px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  padding: 3%;
}

#ResetButton {
  background-color: hsl(0, 0%, 85%);
  box-shadow: 1px 1px 2px hsl(0, 0%, 75%);
  width: 70px;
  height: 70px;
  padding: 4%;
  border: 0px;
  border-radius: 10px;
  cursor: pointer;
  margin: 0px;
}

#ResetIcon {
  width: 45px;
  cursor: pointer;
  margin: 0px;
}

#ResetButton:hover {
  background-color: hsl(0, 0%, 80%);
  box-shadow: 1px 1px 1px hsl(0, 0%, 80%);
}

#Counter {
  width: 90%;
  height: 100px;
  font-size: 5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#Passnger-Buttons {
  margin-top: 25px;
  height: 70px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.Passengers {
  background-color: hsl(0, 0%, 90%);
  border: 1.5px solid hsl(0, 0%, 80%);
  color: hsl(0, 0%, 20%);
  height: 60px;
  width: 100px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.Passengers:hover {
  background-color: hsl(0, 0%, 85%);
  box-shadow: 1px 2px 3px hsl(0, 0%, 85%);
}

#Total-Counter {
  background-color: hsl(0, 0%, 90%);
  box-shadow: 0px 0px 5px hsl(0, 0%, 80%);
  height: 100px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: hsl(0, 0%, 20%);
}

#Credit {
  text-align: center;
  margin-top: 50px;
  color: hsl(0, 0%, 90%);
}

#Notice-Text {
  display: none;
}

@keyframes LoadIn {
  from {
    opacity: 0%;
    transform: translateY(100px) scale(0.5);
  }

  to {
    opacity: 100%;
  }
}
