html,
body {
  font-family: "Oswald", sans-serif;
  margin: 0;
  padding: 0;
}

main.photos {
  padding: 10px;
  display: grid;
  grid-gap: 10px;
  grid-auto-rows: 100px;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-auto-flow: dense;
}

main.cart-page {
  padding: 10px;
}

.cart-page > h1 {
  text-align: center;
}

.cart-page .total-cost {
  text-align: right;
  font-size: 1.5em;
}

.cart-page div.order-button {
  display: flex;
  justify-content: center;
}

div.order-button > button {
  border-color: black;
  cursor: pointer;
  padding: 15px 30px;
  transition: all 0.2s ease-in-out;
  font-size: 1.5em;
  font-family: "Oswald", sans-serif;
}

div.order-button > button:focus {
  outline: none;
}

div.order-button > button:disabled {
  border-color: lightgray;
}

div.order-button > button:hover {
  background-color: lightgreen;
}

.cartIcon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.itemContainer {
  max-width: 40em;
  margin: 0 auto;
  padding: 2em;
  border: 1px solid black;
  margin-bottom: 2em;
  background-color: #f2f2f2;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.cart-item img {
  margin-left: 10px;
}

.price,
.bin {
  font-size: 1.7em !important;
}

img.image-grid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-container {
  position: relative;
  grid-column: span 2;
  grid-row: span 2;
}

.favorite {
  color: #ea453c;
  font-size: 1.2rem;
  position: absolute;
  top: 5px;
  left: 5px;
  cursor: pointer;
}

.ri-heart-fill {
  opacity: 0.7;
}

.ri-delete-bin-line,
.ri-delete-bin-fill {
  font-size: 1.3em;
  cursor: pointer;
}

.cart {
  font-size: 1.2rem;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  color: gray;
}

.wide {
  grid-column: span 4;
}

.tall {
  grid-row: span 4;
}

.big {
  grid-column: span 4;
  grid-row: span 4;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url("https://images.unsplash.com/photo-1421789665209-c9b2a435e3dc?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=751&q=80")
    no-repeat left;
  background-size: 100%;
  color: lightskyblue;
  padding: 0 10px;
  height: 6em;
  -webkit-box-shadow: 0px 2px 10px -5px rgba(21, 6, 5, 1);
  -moz-box-shadow: 0px 2px 10px -5px rgba(21, 6, 5, 1);
  box-shadow: 0px 2px 10px -5px rgba(21, 6, 5, 1);
}

a {
  text-decoration: none;
  color: white;
}

a:hover {
  color: lightskyblue;
}
a:active {
  color: lightskyblue;
}
