html, body {
  margin:0px;
  height:100%;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;

}

#fullContainer {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: url('https://bytesie.neocities.org/original_characters/555.GIF');
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mainContainer {
  position: relative;
  width: 50vw;
  height: 75vh;
  display: grid;
  grid-template-columns: 15% 15% 70%;
  grid-template-rows: 5% 65% 30%;
  grid-template-areas: 
    "title title title"
    "bio bio pic"
    "slideshow slideshow slideshow";
}

#stats {
  width:20%;
  position: absolute;
  right: 0;
  top: 43%;
}

#bio {
  grid-area: bio;
  overflow: auto;
  padding: 20px;
  background-color: #5b0f0f;
  color: black;
}

#mainPic {
  grid-area: pic;
}

#pic {
  aspect-ratio: 1;
  object-fit:cover;
  width: 100%;
  height: 100%;
  object-position: 0 -100px;
}

#slideshow {
  grid-area: slideshow;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.imageSlide {
  display:none;
  aspect-ratio: 1;
  object-fit:cover;
  width: 30%;
  height: 100%;
  border-style: double;
  border-width: 5px;
  border-color: #5d0000
}

.show {
  display: inline;
}
#leftArrow,
#rightArrow {
  cursor: pointer;
  color: #6c4747;
  font-weight: bold;
  font-size: 35px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  padding: 0 10px;
}
#leftArrow:hover,
#rightArrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

#nameTitle {
  grid-area: title;
  background-color: black;
  font-weight: 700;
  display: flex;
  flex-flow: column;
  align-items: center;
}

#imageModal {
  display: none;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  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;
}

/* The Close Button */
.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;
}

.statItem {
  
}