/*generic stuff*/
nav
{
  font-size: 25px;
  background-color: darkgray;
  color: #000000;
  text-align: right;
  border-style:groove;
  border-width: 10px;
  padding:3px;
  margin-top: -3px;
  position: sticky;
  top: 0
}
body
{
  background-repeat: repeat;
  background-image: url("webPageArt/skully_and_icon.png"); 
}
a
{
  color:#02040F
}
a:visited
{
  color:dimgray
}
nav a
{
  color:#02040F
}
nav a:visited
{
  color:dimgray
}
div
{
  margin: 5px;
  padding: 5px;
}
h2
{
  text-align: center;
  margin: 0px;
  padding: 0px;
}
h3{
  font-size: medium;
  margin: 0px;
}
html {
  scroll-behavior: smooth;
}
footer{
  background: #DFDCD2;
}

/*basic central section of the website*/
.layout
{
  padding: 0px;
  margin:0px;
  background: #FFFCF2;
  height:fit-content;
  width: 80%;
  color: #02040F;
  
}

/*for displaying images*/
.gallery{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery-item{
  border: none;
  background: none; 
}
.gallery-item img{
  margin: 1rem;
  width: auto;
  height: 12rem;
  transition: 0.5s;
}
.gallery-item img:hover{
  margin: 0px;
  width: auto;
  height: 14rem;
}



/*modal things*/
.modal{
  display: none; 
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal-content {
  display: block;
  margin: 1%;
  height:80vh;
}
.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;
}

.headerimg{
    margin: 0px;
    padding: 0px;
    width: 100%;
    height:auto
}