hr {
	width: 750px;
  margin-left: 0px;
}

h2 {
  font-size:32px;
  font-style: italic;
  margin-bottom: 10px;
}

h3 {
  font-size: 24px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

p {
  display: block;

}

body {
  background-color: black;
  color: white;
} 

/*----------------------------- ABOUT PAGE */

#about {
  max-width: 750px;
  margin: 0px 50px;
}

#about .index_updates ul li {
  list-style-image: url('../images/ani_eye.gif');
}


  /*-------------------------- POEMS/WRITING PAGE */

#poems {
  max-width: 750px;
  margin: 0px 50px;
}

#poems ul {
  list-style-type: none;
  margin: 0 0 10 10px;
  padding: 0;
}

#poems .poemlinks a:link {
  color: yellow;
}

#poems .poemlinks a:hover {
  background-color: gray;
  color: yellow;
}

#poems .poemlinks a:visited {
  color: yellow;
}

#poems img {
  float: right;
}

#poems .tooltip {
  position: relative;
  display: overflow;
}

#poems .tooltip .comments {
  visibility: hidden;
  width: 200px;
  background-color: white;
  color: black !important;
  text-align: center;
  padding: 5px;
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 105%;
}

#poems .tooltip:hover .comments {
  visibility: visible;
}

/*----------------------------- ENTITIES PAGE */

#names {
  max-width: 750px;
  margin: 0px 50px;
}

/*----------------------------- GALLERY PAGE */

#gallery {
  max-width: auto;
  margin: 30px 50px;
}

#myImg {
  border-radius: 3px;  
  cursor: pointer;
  transition: 0.3s;
  object-fit: cover;
  margin: 1px;
}

#myImg:hover {
  transform: scale(1.10);
  opacity: 0.7;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 50px;
  /* 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 {
  margin: auto;
  display: block;
  width: auto;
  height: 100%;
  
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

.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;
}

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}

/*----------------------------- HOUSES */

#houses {
  max-width: 750px;
  margin: 0px 50px;
}

/*----------------------------- HISTORY */

#history {
  max-width: 750px;
  margin: 0px 50px;
}

/*----------------------------- SITE NAV */

#sitenav h1 {
  margin-left: 50px; 
  font-size: 40px;
}

#sitenav a {
  text-decoration: none;
  color: white;
}

#sitenav ul {
  list-style-type: none;
  margin: 0px 50px;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  font-size: 22px;
}

#sitenav li {
  float: left;
}

#sitenav li a, .dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 5px 10px;
  text-decoration: none;
}

#sitenav li a:hover, .dropdown:hover .dropbtn {
  background-color: blue;
}

#sitenav li.dropdown {
  display: inline-block;
  
}

#sitenav .dropdown-content {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 90px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
 
}

#sitenav .dropdown-content a {
  color: white;
  padding: 7px 10px;
  text-decoration: none;
  display: block;
  text-align: left;
}

#sitenav .dropdown-content a:hover {
  background-color: blue;
}

#sitenav .dropdown:hover .dropdown-content {
  display: block;
}

/*----------------------------- LE FOOTER */

footer {
  text-align: center;
  font-size: 10px;
  padding: 15px;
}

