body {
	font-family: Trebuchet, Arial, sans-serif;
	font-size: 100%;
	margin: 0px auto;
}


/* RESPONSIVE LOGO */

.logo {
  margin: 0 0 0 0;
  width: 40%;
  height: auto;
}

@media screen and (max-width: 800px) {
  .logo {
    width: 60%;
  }
}

@media screen and (max-width: 600px) {
.logo {
    width: 100%;
  }
}

/* Navigation Menu */

ul.topnav {
    list-style-type: none;
	width: 100%;
    margin: 0 0 20px 0;
    padding: 0;
    overflow: hidden;
    background-color: #881d51;
}

ul.topnav li {float: left;}

ul.topnav li a {
    display: block;
	border-right: 1px solid #fff;
    color: #fff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

ul.topnav li a:hover:not(.active) {background-color: #c31f5c; color: #fff}


@media screen and (max-width: 600px){
    ul.topnav li.right,
    ul.topnav li {float: none;}
}

.blue {color:#1990c5;}
.green {color:#69a543;}
.yellow {color:#fba919;}
.orange {color:#f36f28;}
.fuchsia {color:#c31f5c;}
.purple {color:#881e52;}
.grey {color:#4c4a4a;}

p {
	font-family: Trebuchet, Arial, sans-serif;
	font-size: 100%;
}

#content {
	margin: 0px 10px 10px 10px;
}

footer {
  overflow: hidden;
  width: 100%;
  color: #fff;
  padding: 1px 0 1px 0;
  text-align: center;
  background: #881d51;
}


/* ALL BELOW IS FOR STOCK GALLERY */

.stock-images {
 display: block;
 width: 100%;
 height: auto;
 border: 4px solid #888;
}

.stock-images:hover {
            opacity: 0.7;
}


* {box-sizing: border-box;}

.container {
  position: relative;
}

.overlay {
  position: absolute; 
  bottom: 0; 
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 20px;
  padding: 20px;
  text-align: center;
}

.container:hover .overlay {
  opacity: 1;
}

* {
  box-sizing: border-box;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sit next to each other */
.column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}


/* BACK TO TOP BUTTON */

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: 1px solid #777;
  outline: none;
  background-color: #881e52;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #c31f5c;
}


