body {
  font-family: 'Special Elite', cursive;
  background-color: #ffffff;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
  font-size: 19px;
  line-height: 1.1;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><line x1="0" y1="0" x2="100%" y2="0" stroke="%23aaa" stroke-width="0.5"/><line x1="0" y1="40" x2="100%" y2="40" stroke="%23ccc" stroke-width="0.5"/><line x1="0" y1="80" x2="100%" y2="80" stroke="%23eee" stroke-width="0.5"/></svg>');
  background-repeat: repeat;
outline: none;
box-shadow: none;
}
header {
  background-color: #333; 
  text-align: center;
  padding: 0.4rem;
}

footer {
  background-color: #87878a;
  text-align: center;
  padding: 0.4rem;
}

nav {
  display: flex;
  justify-content: center;
  background-color: #87878a;
  padding: 0.5rem;
}

nav a {
  margin: 0 2.5rem;
  text-decoration: none;
  color: #f4f4f4;
  font-weight: regular;
  font-family: 'Staatliches', sans-serif;
}
nav a:hover {
  text-decoration: line-through;

}
section {
  padding: 0.5rem 0.5rem;
  max-width: 900px;
  margin: auto;
  border-bottom: 1px solid #ddd;
  background-color: rgba(255,255,255,0.95);
  text-align: justify;
}
h2 {
  font-family: 'Special Elite', cursive;
  font-size: 2rem;
  border-left: 4px solid #999;
  padding-left: 0.5rem;
  text-transform: uppercase;
}

.gallery img {
  width: 160px;
  cursor: pointer;
  transition: 0.3s;
  margin: 10px;
  border: 2px solid #ccc;
  border-radius: 4px;
}

.gallery img:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;
  border: 4px solid #fff;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}