@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;
}

.album .container .row .col-12 .img-wrap {
  position: relative;
}

.album .container .row .col-12 .img-wrap .img-description {
  overflow: hidden;
  font-size: 0.9rem;
  position: absolute;
  max-height: 30%;
  top: 80%;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0032A0;
  color: #fff;
  opacity: 0.8;
  -webkit-transition: opacity .3s, visibility .3s;
  transition: opacity .3s, visibility .3s;
}

.album .container .row .col-12 .img-wrap .img-description p {
  display: block;
  /* or inline-block */
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  max-height: 5.0em;
  line-height: 1.8em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.album .container .row .col-12 .img-wrap .img-description a {
  color: white !important;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.album .container .row .col-12 .img-wrap .img-description a:hover {
  color: #e0d9d9 !important;
  text-decoration: underline !important;
}
/*# sourceMappingURL=album.css.map */