*{box-sizing: border-box;}
html {
    font-family: courier;
    text-align: center;
    background-color:rgba(81, 190, 233, 0.829) ;
}
body {
    background-color:rgba(81, 190, 233, 0.829)
}
h1.header {
    text-align:center;
}
footer {
    background-color:darkgrey;
    padding: 10px;
    text-align:center;
    color: white;
    width:100%;
    font-size: 12px;
    height: 60px;
}

p {
    font-family: Arial;
    text-align:center;
}

div.jumbotron {
    font-family: Arial;
    font-size: 18px;
}
#itemCount {
    position: absolute;
    display: none;
    top: -10px;
    left:  950px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: red;
    color: white;
    text-align: center;
}
#shoppingCartModal {
    top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  position: absolute;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
}
div.modal-content.openCloseCart {
    position: relative;
  width: 600px;
  left: 50%;
  top: 150px;
  margin-left: -300px;
  padding: 40px;
  box-shadow: 0 0 10px black;
  background: #e9e9e9;
  overflow: auto;
}
 
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .collapsible:hover {
    background-color: #ccc;
  }
  
  /* Style the collapsible content. Note: hidden by default */
  .content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
  }

  .contactForm {
    padding: 10px;
  }

  .footer {
    display: block;
    margin:auto;
    float:left;
    text-align:center;

  }

  .modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}


.modal-content {
    background-color: #fefefe;
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
}
