html,body { height:100%; }
body {
    background-color: rgb(1, 116, 188);
    padding:0;
    margin:0;
    font-family: Amaranth;

}
p {
    margin-top: 0px;
    margin-bottom: 0px;
}
img {
    margin: auto;
}
button {
    font-family: Amaranth;
    background-color: #3271C1;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    cursor: pointer;
}
.cart-item-x {
    background: url('https://batridge.com/x_button.svg');
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    margin-top: 10px;
    margin-right: 10px;
    display:inline-block;
    text-align: right;

}
.cart-item-x-div {
    display:inline-block;
    text-align: right;
}
.cart-header {
    font-family: Galada;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0em;
    text-align: left;
    color: #872327;
    width: 100%;
    margin: 10px 0px 0px 10px;

}
.cart-item {
    width: 100%;
}
.cart-item-description {
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 0px;
    font-family: Amaranth;
    color: #872327;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    width:calc(100% - 40px);
    display: inline-block;
}
.cart-empty {
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: center;
    color: #827970;

}
.cart-total {
    margin: 10px;
    width: 100%;
    text-align: left;
}
.contact {
    grid-area: 3 / 3 / span 1 / span 1;
    font-family: Amaranth;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: center;
}
.amount-selector {
    background-color: white;
    border-color:#3271C1;
    color: #3271C1;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}
.productName {
    color: #872327;
    font-family: Amaranth;
    font-size: 32px;
    font-weight: 400;
    line-height: 39px;
    letter-spacing: 0em;
    text-align: center;
}

.price {
    font-size: 24px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: center;
}

.description {
    font-family: Amaranth;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    margin-bottom: 6px;
    text-align: center;    
}
.about {
    margin-top: 10px;
    margin-left: 50px;
    margin-right: 50px;
    font-family: Amaranth;
    color: #872327;
    font-weight: 400;
    font-size: 32px;
    line-height: 39px;
    font-size: xx-large;
    text-align: left;
}



.productImage {
    display: block;
    max-width:225px;
    min-height: 225px;
    max-height:225px;
    width: auto;
    height: auto;
}
.clear-form, .checkout-form, .cart-header {
    display: inline-block;
    padding-inline: 5px;
}

.cart {
    background-color: #D9D9D980;
    grid-area: 1 / 3 / span 2 / span 1;
}
.tiles {
    width: calc(100%-10px);
    display: grid;
    grid-template-columns: repeat(auto-fit, 30%);
    gap: 10px;
    margin-left:10px;
    margin-right:10px;
    background-color: white;
    justify-content: space-between;

  }
#header {
    display: flex;
    justify-content:space-between;
    margin: 0 50 0 50;
    padding-top: 20;
    padding-bottom: 50;
}
#content {
    background-color: white;
}
#container {
    background-color: white;
    text-align:center;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    font-size: xx-large;
    height: 100%;
}
@media only screen and (min-width: 1024px) {
    /* For desktop: */
    #container {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;     
        font-size: larger;
        height: 100%;
    }
}

.row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 50px;
    align-items: center;
  }
  
  /* Create 3 equal columns that sits next to each other */
  .column {
    -ms-flex: 32%; /* IE10 */
    flex: 32%;
    max-width: 32%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .column {
      -ms-flex: 50%;
      flex: 50%;
      max-width: 49%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      -ms-flex: 100%;
      flex: 100%;
      max-width: 100%;
    }
  }