body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Bebas Neue", cursive;
  background-color: black;
  background-image: url(/assets/background.png);
  background-repeat: repeat;
  background-size: 40%;
}

h1 {
  width: 100%;
  font-family: "Bebas Neue", cursive;
  font-size: 28px;
  letter-spacing: 3px;
  line-height: 24px;
  color: #31a8ff;
  text-transform: uppercase;
  margin: 0;
  font-weight: bold;
}

p {
  font-weight: 300;
  width: 100%;
  margin: 0;
  color: #cdd7e1;
  line-height: 18px;
  font-size: 16px;
  letter-spacing: 1px;
}

a,
a:visited {
  color: #31a8ff;
  text-decoration: none;
}

b {
  color: rgb(146, 146, 146);
}

.wrapper {
  max-width: 1302px;
  box-sizing: border-box;
  padding: 0 20px;
  width: 95%;
  margin: 0 auto;
  margin-top: 20px;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 40px;
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); /* for Safari */
  background-color: rgba(1, 30, 54, 0.5);
}

header {
  text-align: left;
  display: flex;
  width: 70%;
  max-width: 100%;
  padding: 40px 0px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

header img {
  position: relative;
  width: 100%;
  max-width: 140px;
  border-radius: 6px;
}

.profile-description {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 0px 20px;
  width: 400px;
  max-width: 100%;
}

footer {
  text-align: center;
  width: 100%;
  padding: 20px;
  color: #cdd7e1;
  letter-spacing: 1px;
}

footer a {
  color: #31a8ff;
  font-weight: bold;
  text-decoration: none;
}

.pswp__counter {
  font-family: "Tinos", serif;
}

.pswp-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.pswp-gallery a {
  max-width: 23%;
  position: relative;
  display: inherit;
  transition: transform 0.3s ease;
}

.pswp-gallery a:hover {
  transform: scale(1.1) rotate(3deg);
  z-index: 2;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.717);
}

.pswp-gallery a .location,
.pswp-gallery a .exif {
  bottom: 10px;
  position: absolute;
  right: 10px;
  color: white;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); /* for Safari */
  background-color: rgba(0, 0, 0, 0.2); /* semi-transparent background */
  padding: 0 7px;
  font-size: 16px;
  text-shadow: 1px 1px 1px rgba(109, 109, 109, 0.5);
  padding-top: 3px;
  border-radius: 6px;
  font-weight: bold;
  letter-spacing: 1px;
}

.pswp-gallery a .exif {
  bottom: 40px;
}

.pswp-gallery a img {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
  transition: transform 0.3s ease;
  outline: 10px solid transparent;
  background-color: white;
}

.pswp-gallery a img:hover {
  filter: brightness(1.1) contrast(1.1) saturate(1.1);
  outline: 10px solid white;
}

@media only screen and (max-width: 600px) {
  header {
    width: 100%;
    text-align: center;
    padding: 0;
    gap: 20px;
    margin: 20px 0;
  }

  .wrapper {
    padding: 0 5px;
    width: 95%;
  }

  .pswp-gallery a {
    max-width: 100%;
    width: 100%;
  }
}
