body, html {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(34, 19, 3);
}

* {
  box-sizing: border-box;
}

.bg-image {
  display: block;
  margin: auto;
  /* Full height */
  height: 90%; 
  width: 65%;
}

.artwork, .catagory{
   background-color: rgb(131, 69, 2);
   width: 100%;
   padding: 5px;
   border-bottom:  rgb(34, 19, 3) solid 5px;
}

#bio{
  margin: auto;
  color: white;
  width: 100%;
  padding: .5em 1.5em;
  background-color: rgb(131, 69, 2);
  border-bottom:  rgb(34, 19, 3) solid 5px;
}

.logoBox{
  text-align: center;
  background-color: rgb(0,0,0);
}

.bottomLogo{
  height:5em;
  padding: .25em 0 .3em .5em;
}

.logoName{
  height:1.5em;
  /* padding: 0 0 0 .5em; */
  padding-bottom: .5em;
}

.email{
  margin: auto;
  text-align: center;
  padding-top: .4em;
  width: 100%;
  background-color: rgb(131, 69, 2);
}

.emailImg{
  width: 1em;
  height: 4em;
}

#contact img{
  margin: auto;
  width: 5em;
}

/* Position text in the middle of the page/image */
.logo {
  background-color: rgb(0,0,0);
  /* background-color: rgba(0,0,0, 0.8); Black w/opacity/see-through */
  position: fixed; /* Stay fixed */
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 10px 10px 0px 10px;
  /* border: 8px solid #f1f1f1; */
  text-align: center;
  animation-name: dropLogo;
  animation-duration: .25s;
  /* animation-timing-function: */
}

.logoMk{
  /* width: 75px; */
  height: 6em;
  padding-bottom: .75em;
}

.logoType{
  /* border: 1px solid white; */
  width: 215px;
  padding: .5em;
}

.center{
  margin: 0;
  position: absolute;
  top: 45%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.logo p{
  margin-top: -10px;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 5; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  /* object-fit: fill; */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  z-index: 6; /* Sit on top */
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 5px 0;
  /* height: 150px; */
  background-color: rgb(131, 69, 2);
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #015abf;
  font-size: 20px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #8a2d2d;
;
  text-decoration: none;
  cursor: pointer;
}

/* Sticky Nav */

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  --h: 8em; /* example */
  top: calc(45vh - var(--h) / 2);
  width: 20px;
  background-color:rgb(131, 69, 2);
  position: fixed;
  height: 9.2em;
  overflow: auto;
}

li a {
  display: block;
  margin: auto;
  color: white;
  font-style: italic;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

#faBrush{
  height: .05em;
  color: white;
}

li a.active {
  background-color: #04AA6D;
  color: white;
}

li a:hover:not(.active) {
  background-color: #205860;
  color: white;
}

/* Title Page Animation */

@keyframes dropLogo{
  0%   {height: 0%;}
  25%  {height: 25%;}
  50%  {height: 50%;}
  100% {height: 100%;}
}