/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
   /*
   PALETTE:
   yellow: #fff4c0
   light pink: #F7B0E3
   dark pink: #A32148
   darkest pink: #550042
   light blue: #AADFF0
   */


body {  
  background-image:  url("./img/toothhead1.png"), url("./img/backgroundnoise.jpg");
  background-repeat: no-repeat;
  background-position:  bottom right 5%, center;
  background-attachment: fixed;
  background-size: 200px, cover;
  
  color: #FFFFFF;
  font-family: "Lucida Console";
  margin: 1% 12%;
  padding: 0;
}

h1 {
  color: #A32148;
  background-color: #000000;
  text-align: center;
  font-family: "OCR-A", monospace;
  border-style: outset;
  border-width: thick;
  margin-bottom: 40px;
}

h2 {
  color: #AADFF0;
}

img {
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto;
}

hr {
  border-top: dashed;
  border-left: none;
  border-right: none;
  border-bottom: none;
  color: #A32148;
}










/* Container for flexboxes */
section {
  display: -webkit-flex;
  display: flex;
}


/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
@media (max-width: 600px) {
  section {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}






/* Style the navigation menu */
nav {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* Style the list inside the menu */
nav ul {
  color: #FFFFFF;
}

nav hr {
  margin: 15px;
  border-width: medium;
}

nav ul li {
  list-style-type: "☆ ";
  list-style-position: inside;
  
  border-style: outset;
  border-color: #A32148;
  background-color: #000000;
  margin: 15px;
}

nav a:hover, a:active { 
  color: #fff4c0;
  cursor: pointer; 
}

nav a {
  color: #F7B0E3;
  text-decoration: none;
}









/* Style the content */
article {
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
  padding: 10px;
  border-style: solid;
  border-width: thin;
  background-color: #000000;
  /*background-image: url("./img/toothhead1.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-attachment: local;
  background-size: 200px; */
}

article ul {
 list-style-type: "☆ ";
 margin: 20px;
}

article a {
    color: #fff4c0;
}











div.gallery {
  margin: 5px;
  float: left;
  border: 1px solid #F7B0E3;
  width: 180px;
}

div.gallery:hover {
  border: 1px solid #A32148;
  cursor: pointer;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
  word-wrap: break-word;
}

  
  

/* The Modal (background) */
.modal {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 50%;
    top: 50%;
    display: flex;
    flex-direction: column;
    row-gap: 0px;
    object-fit: cover;
    transform: translate(-50%, -50%);
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(55, 0, 42, 0.5);
    margin-top: -1px;
}

/* Modal Content (image) */
.modal-content {
    display: flex;

    height: 100%;
    max-height: 80%;
    width: auto;
}

.modal img {
    margin-bottom: 20px;

    height: 100%;
    max-height: 80%;
    width: auto;

    /*position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px; */
}

@keyframes zoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}


/* Caption of Modal Image */
.caption {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: auto;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #fff4c0;
  padding: 10px 0;
  /*height: 150px;*/
}

.caption a {
    color: #F7B0E3;
}

  


.closeBtn {
    color: rgba(255, 255, 255, 0.87);
    font-size: 10px;
    position: absolute;
    top: 0;
    right: 0;
    scale: 300%;
    margin: 20px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.closeBtn:hover, .closeBtn:focus {
    color: rgb(255, 255, 255);
}

.prevBtn {
    color: rgba(255, 255, 255, 0.87);
    font-size: 100px;
    position: absolute;
    top: 40%;
    left: 0;
    scale: 300%;
    margin: 20px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.prevBtn:hover, .prevBtn:focus {
    color: rgb(255, 255, 255);
}

.nextBtn {
    color: rgba(255, 255, 255, 0.87);
    font-size: 100px;
    position: absolute;
    top: 40%;
    right: 0;
    scale: 300%;
    margin: 20px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.nextBtn:hover, .nextBtn:focus {
    color: rgb(255, 255, 255);
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}










/* Style the footer 
footer {
  background-color: #777;
  padding: 10px;
  text-align: center;
  color: white;
} */

