:root {
    --primary-color: rgb(105, 94, 94);
    --secondary-color: black;
}
@import url('https://fonts.googleapis.com/css?family=Lobster&display=swap') repeat scroll 0 0 rgba(0, 0, 0 , 0);

body {
  background: #fff;
}

.title {
  font-size: 2.5rem;
  font-family: 'Lobster', cursive;
}

.wrapper {
  animation: scroll 70s linear infinite;
  background: url("https://images.unsplash.com/photo-1465146633011-14f8e0781093?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=3450&q=80"), #111111;
  color: #eee;
  height: 100vh;
  min-width: 360px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  perspective-origin: 50% 50%;
  
}

@keyframes scroll {
   100%{
    background-position:0px -3000px;
  }
}

@media (prefers-reduced-motion) {
  .wrapper {
    animation: scroll 200s linear infinite;
  }
}

@media (min-width: 670px) {
  .title {
    font-size: 5rem;
  }
}

body {
    background-image: url(/dollars.jpg);
    margin: 0;
    height: 100%;
    background-position: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: antiquewhite;
  }
  
  .section {
    width: 100%;
    max-width: 500px;
    align-items: center;
    margin: auto;
    padding: 2rem 1rem;
    text-align: center;
    background-color: var(--primary-color);
  }
  h1,
  p {
    color: rgb(255, 255, 255);
  }
  .label {
    font-size: 1.3rem;
    padding: 1.5rem 1rem 0.5rem;
    color: var(--secondary-color);
  }
  
  input {
    width: 90%;
    padding: 1rem;
    height: 20px;
    display: block;
  }
  
  button {
    padding: 0.5rem 1rem;
    display: block;
    font-size: 1rem;
    border: none;
    margin: 1rem auto 0;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: bold;
  }
  
  .cash-input {
    display: none;
  }
  .change-returned {
    display: none;
  }
  .error-Message {
    padding-top: 1rem;
    color: white;
  }
  #output {
    margin: 1rem 0;
  }
  
  #output table,
  th,
  td {
    padding: 0.2rem;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    border-collapse: collapse;
    
  }
  .notes {
    background-color: white;
    font-weight: bold;
  }
  
  table {
    width: 100%;
    table-layout: fixed;
  }
  
  th,
  td {
    word-wrap: break-word;
  }