/* font-family: 'Indie Flower', cursive;
font-family: 'Lobster', cursive; */

body {
  font-family: 'Courier New', Courier, monospace;
  background: url(./cash-register-background.jpg) no-repeat center center fixed;
  background-size: cover;
}

.container-fluid {
  background-color: rgba(255, 255, 255, 0.7);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav {
  background-color: rgba(0, 0, 0, 0.5);
}

#main-menu .nav-link {
  color: #fff;
}

#main-menu .nav-link:hover {
  background-color: #fff;
  color: #000;
}

h1 {
  font-family: 'Lobster', cursive;
  font-size: 3rem;
  padding-top: 5rem;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 2.5rem auto;
}

h3 {
  text-align: left;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem auto 0;
  max-width: 50rem;
}

button {
  margin: 2.5%;
  font-size: 1.5rem;
  width: 50%;
}

button:hover {
  transform: scale(1.1);
}

button:active {
  transform: scale(0.9);
}

p {
  font-weight: 600;
  max-width: 50rem;
  margin: 1rem auto;
}

.details {
  padding-bottom: 5rem;
}

.details p {
  text-align: left;
}

.inputs {
  display: block;
  margin: 1rem auto;
  font-size: 1.5rem;
}

#submit {
  background-color: green;
  color: #fff;
}

#submit:hover {
  transform: scale(1.1);
}

#submit:active {
  transform: scale(0.9);
}
