body {
  font-family: "Averia Libre", system-ui;
  font-weight: 400;
  background-image: url("wood.png");
  background-size: cover;

}
h1 {
    text-align: center;
    font-size: 40px;
    margin-left: 20px;
    margin-right: 20px;
    max-width: 250px;
}
h2 {
    align-self: center;
    text-align: center;
    font-size: 18px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
    max-width: 250px;
}

.container{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 250px;
    margin-top: 40px;
}
.receipt {

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;

    background-image: url("wrinklepaper.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
}

.receipt > * {
    padding: 0 20px;
}

.row {
    display: flex;
    justify-content: space-between;
    line-height: 0.1;
    font-size: 12px;
    width: 85%;
}
.batch {
    display: flex;
    font-size: 12px;
    line-height: 0.1;
}

.items {
    display: flex;
    justify-content: space-between;
    width: 85%;
    font-size: 12px;
    line-height: 0.1;
}

.total {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
    margin-bottom: 4px;
    font-size: 20px;
    line-height: 0.5;
}
.paid {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
    margin-bottom: 4px;
    font-size: 20px;
    line-height: 0.5;
}

.change {
    display: flex;
    margin-top: 4px;
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 0.5;
}

.thanks {
    align-self: center;
    font-size: 12px;
    margin-bottom: 50px;
}

#calculate-change {
    width: 120px;
    height: 80px;
    top: 30%;
    left: -10%;
    text-align: center;
    position: absolute;
    padding: 12px 20px;

    background-color: #c0c0c0;
    color: black;
    border: 3px solid;
    border-color: white #404040 #404040 white;
    box-shadow: 2px 2px 0px #000;
    font-size: 16px;
    
    cursor: pointer;
}

#calculate-change:active {
    border-color: #404040 white white #404040;
    box-shadow: none;
    transform: translate(2px, 2px);
}

.monitor {
    position: relative;
    width: 500px;
}

.monitor img {
    width: 1000px;
    margin-left: -300px;
    
}

.results {
    display: grid;
    grid-template-columns: auto auto;
    row-gap: 20px;
    column-gap: 8px;
   
    font-family: "Pixelify Sans", sans-serif;
    color: rgb(16, 209, 16);
    font-size: 20px;

    position: absolute;
    top: 20%;
    left: 30%;
    width: 60%;
    height: 20%;
}
.results p {
    margin: 0;
}