.hidden {
  display: none;
}

p {
    text-align: center;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
}

h1 {
    text-align: center;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
}

h2 {
    text-align: center;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
}

button {
    border: 1px solid black;
    background-color: #eee;
    color: black;
    cursor: pointer;
}

form {
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
}

form > input {
  border: 1px solid black;
  background-color: white;
}

.formSection {
  display: block;
  margin: 5px;
}

details {
  text-align: center;
}

div.patch {
  overflow: auto;
  margin: auto;
  display: block;
  text-align: center;
  width: 75%;
}

details > summary > * {
  display: inline;
  cursor: pointer;
}

span.ver {
  color: #ccc;
  float: right;
  margin: 2px;
  top: 0;
}

span.close {
  color: black;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

div.gallery {
  margin: 5px auto;
  border: 1px solid #000;
  float: none;
  width: 180px;
  display: inline-block;
}

div.gallery:hover {
  border: 1px solid #ccc;
}

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

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

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0); /* Black w/ opacity */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.modal-content-wrapper {
  background-color: #ffffff;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid black;
  width: 85%;
  height: fit-content;
}

.modal-content-wrapper > .modal-content {
  background-color: #ffffff;
  margin: 5% auto; /* 15% from the top and centered */
  padding: 30px;
  border: 1px solid white;
  width: fit-content; 
  text-align: center;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
