@import url("https://fonts.googleapis.com/css2?family=PT+Serif&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");
* {
  margin: 0;
  padding: 0;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  outline: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "PT Serif", serif;
  color: #0032A0;
}

p {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  color: black;
}

input:focus:required:invalid {
  border: 2px solid red !important;
}

input:required:valid {
  border: 2px solid #0032A0 !important;
}

table {
  border: 1px solid white;
  width: 100%;
  position: relative;
}

thead {
  border: 1px solid white;
  background: #000;
  padding: 30px 0;
}

tr {
  border: 1px solid white;
  padding: 30px 0;
  text-align: center;
}

tr:nth-of-type(odd) {
  background: #96A2B8;
}

th {
  border: 1px solid white;
  padding: 30px;
}

td {
  border: 1px solid white;
  padding: 20px 30px;
}

body::-webkit-scrollbar {
  width: 1em;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.item {
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.item:hover {
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}

.pages {
  display: block;
  margin: auto;
  width: 50%;
  margin-bottom: 30px;
}

.pages .pagination {
  margin: auto;
  width: 50%;
}
/*# sourceMappingURL=gallery.css.map */