@import url('https://fonts.google.com/specimen/Bruno+Ace+SC?query=bruno');

@font-face {
  font-family: "Bruno";
  src: url("fonts/BrunoAce.ttf");
  font-weight: normal;
  font-style: normal;
}

*{
  box-sizing: border-box;
  font-family: arial;
  color: #777;
}

.nav li {
  display:inline;
}
.nav a {
     display: inline-block;
     padding: .5em;
     color: white;
     text-decoration: none;
}

.main-nav {
    text-align: center;
    font-size: 1.1em;
    font-weight: lighter;
    border-bottom: 1px solid rgba(255, 255,255, .3)
}

.main-nav li {
  padding: 0 5%;
}

.nav a:hover {
  background-color: rgba(255, 255, 255, .3)
}

.main-header {
  background-size: cover;
  background-color: rgba(99, 196, 255, 1);
}

.company-name {
  text-align: center;
  margin: 0;
  font-size: 4em;
  font-family: Bruno;
  font-weight: normal;
  color: grey;
}

.content-section {
  margin: 5em;
}

.container {
   max-width: 800px;
   margin: 0 auto;
   padding: 0 1.5em;
}

.section-header {
   font-family: "Bruno";
   font-weight: normal;
   color: grey;
   text-align: center;
   font-size: 2.5em;
}

.back-image {
display: block;
margin-left: auto;
  margin-right: auto;

}

.shop-item-image {
  float: left;
  height: 120px;
  width: 120px;
  margin: 15px;
}

.main-footer {
  background-color: lightgrey;
  color: grey;
  padding; .25em 0;

}

 .main-footer-container {
   display: flex;
   align-items: center;
   flex-grow: 1;
   text-align: end;
 }

.footer-nav li {
  padding: 0 .5em;
}

.footer-nav {
  width: 30px;
  height: 30px;
}

.btn {
  text-align: center;
  vertical-align: middle;
  padding: .67em;
  cursor: pointer;
}

.btn-header {
  margin: .5em 15% 2em 15%
  color: white;
  border: 2px solid #2D9CD8;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  font-size: 1.5em;
  font-weight: lighter;
  padding-left: 2em;
  padding-right: 2em;
}

.btn-header:hover {
background-color: rgba(255, 255, 255, .3)
}

.tour-row {
  border-bottom: 1px solid black;
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.tour-row:last-child {
  border-bottom: none;
}

.tour-item {
  display: inline-block;
  padding-right: .5em;
}

.tour-date {
  color: #555;
  font-weight: bold;
  width: 11%;
}

.tour-city {
  width: 24%
}

.tour-venue {
  width: 42%;
}

.tour-btn {
  max-width: 19%;
}

.btn-primary {
  color: white;
  background-color: rgba(255, 162, 73, 0.85);
  border: none;
  border-radius: .3em;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: #2D9CDB;
}

.shop-item {
  margin: 30px;
}

.shop-item-title {
display: block;
width: 100%;
text-align: center;
font-weight: bold;
font-size: 1.5em;
color: #333;
margin-bottom: 15px;
}

.shop-item-details {
display: flex;
align-items: center;
padding: 5px;
}

.shop-item-price {
  flex-grow: 1;
  color: #333;
}

.shop-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.cart-header {
  font-weight: bold;
  font-size: 1.2em;
  color: #333;
}

.cart-column {
  display: flex;
  align-items: center;
  border-bottom: 1px solid black;
  margin-right: 1.5em;
  padding-bottom: 10px;
  margin-top: 10px;
}

.cart-row {
  display: flex;
}

.cart-item {
  width: 45%;
}

.cart-price {
 width: 20%;
 font-size: 1.2em;
 color: #333;
}

.cart-quantity {
 width: 35%;
}

.cart-item-title {
  color: #333;
  margin-left: .5em;
  font-size: 1.2em;
}

.cart-item-image {
  width: 130px;
  height: auto;
  border-radius: 10px;
}

.btn-danger {
  color: white;
  background-color: #EB5757;
  border: none;
  border-radius: .3em;
  font-weight: bold;
}

.btn-danger:hover {
  background-color: #CC4C4C;
}

.cart-input-quantity {
  height: 34px;
  width: 50px;
  border-radius: 5px;
  border: 1px solid #56CCF2;
  background-color: #eee;
  padding: 0;
  text-align: center;
  font-size: 1.2em;
  margin-right: 25px;
}

.cart-row:last-child {
  border-bottom: 1px solid black;
}

.cart-row:last-child .cart-column {
  border: none;
}

.cart-total {
  text-align: end;
  margin-top: 10px;
  margin-right: 10px;
}

.cart-total-title {
  font-weight: bold;
  font-size: 1.5em;
  color: black;
  margin-right: 20px;
}

.cart-total-price {
  color: #333;
  font-size: 1.1em;
}

.btn-purchase {
  display: block;
  margin: 40px auto 80px auto;
  font-size: 1.75em;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
