head {
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nova+Slim&display=swap');
}


body { 
background: #000000;
color: white;
font-family: arial;
font-size: large;

  background-image: url("bg.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-opacity: 0.25;

}




.header_bar{
	 display: flex;
	width: 100%;
}


.header_image {
width: 100%;
margin-botom: 0px;
padding: 0px;
}


.dropbtn {
  background-color: #004945;
  
  
  color: white;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 0px;
  padding-right: 0px;
  margin-top: 0px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 100%;
  border-radius: 25px;
  
}

.dropdown {
  position: relative;
  display: inline-block;
  flex: 1 25%;
  padding: 2px;
  margin: 5px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #c7c7c7;
  min-width: 160px;
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #0000aa;
}

.product-filter {
  display: flex;
  margin-left: 16px;
  color: #00C3AF;
  text-align: center;
}

.product-filter h1 {
  flex-grow: 1;
}

.products {
  display: flex;
  flex-wrap: wrap;
  margin-left: 16px;
}

.product-card {
  flex: 1 16%;
  background-color: black;
  margin: 3px;
  border: 2px solid #00C3AF;
  align-items: center;
  justify-content: center;
  
}

.product-image img {
  max-width: 100%;
}

.product-info {
  margin-top: auto;
  text-align: left;
  background-color: black;
  color: #00C3AF;
  text-align: center;

  
}


.large_image {
	position: fixed;
	display: none;
	width: 50%;
	height: 70%;
	left: 33vw;
	top: 21vh;

}


#large_image_img {
	width: 100%;
	max-width: 70%;
}


.canvas {
	/*height: 50px; */
	position:absolute;
	top: -500px;
	font-family: 'Nova Slim', cursive;
	font-size: 24px;
}





@media (max-width: 600px) {
  .product-card {
    flex: 1 46%;
  }
  
  .large_image {
	position: fixed;
	display: none;
	width: 95%;
	height: 80%;
	left: 13vw;
	top: 21vh;

}
  
  
}







