body{
	background-color: #363636;
	font-family: 'Titillium Web';
}

.openingP {
	
	text-align: center;
	color: white;
	margin-left: 200px;
	margin-right: 200px;
	font-size: 18px;
	font-family: 'Titillium Web';
}

.navbar {
  overflow: hidden;
  background-color: #9d2235;
  font-family: Arial;
  font-weight: bold;
}


.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.navbarRight {
  float: right;
}


.dropdown {
  float: left;
  overflow: hidden;
}


.dropdown .dropbtn {
  font-weight: bold;
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}


.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: black;
}

.navbar img {
	
    display: block;
    width: 85px;
    height: 47px;
	position: absolute;
    left: 50%;
    margin-left: -50px;	
	margin-top: .1px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: black;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}


.dropdown-content a:hover {
  background-color: #2A2A2A;
}


.dropdown:hover .dropdown-content {
  display: block;
}

.container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.container img {
	
	height: 500px;
}

.container .content {
  position: absolute; 
  bottom: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 760px;
  padding: 20px;
}
.container h1 {
	font-weight: bold;
	color: white; 	
}

h1 {
	font-weight: bold;
	color: white; 
	text-align: center;
	margin-top: 25px;
}

.flex-container {
	border-radius: 25px;
	margin-left: auto;
    margin-right: auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 1200px;
    height: 525px;
	background-color: #9d2235;
}

.flex-container > div {	
    text-align: center;
	border-radius: 25px;
    background-color: black;
    height: 465px;
    width: 335px;
    margin: 10px;
    padding: 20px;
    font-size: 20px;
}

.flex-container img{
	display: block;
	border-radius: 25px;
	justify-content: center;
	align-items: center;
	width: 338px;
    height: 425px;
    position: relative;
	cursor: pointer;
}


.imgText {
    position: absolute;
	border-radius: 25px;
    top: 25px;
    right: 20px;
    padding: 4px;
    color: white;
    background-color: #9d2235;

}

.button {
  background-color: #9d2235;
  border-radius: 25px;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top:30px;
  cursor: pointer;
  
}

.button:hover {background-color: #691723}

.button:active {
  background-color: #d64359;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

.caption{
  
  margin-top: 5px;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
	
}

.stock{
  color: green;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}


.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}


.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 550px;
}


#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}


.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}


.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}
