@font-face {
    font-family: 'Continuum-M';
    src: url(/fonts/contm.ttf), format("truetype");
  }

@font-face {
    font-family: 'Continuum-L';
    src: url(/fonts/contl.ttf), format("truetype");
  }

body {
  padding: 25px;
  justify-self: center;
  max-width: 1500px;
  background-image: url(/images/WiiPhotoChannelBG.webp);
  font-family: 'Continuum-M';
  font-size: large;
}

.back {
  text-align: center;
  padding: 12px;
  width: 90px;
  position: absolute;
  font-size: small;
  color: rgba(0, 0, 0, 0.692);
  box-shadow: black 0 0 10px;
  border: rgba(255, 255, 255, 0.5) solid 5px;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 45px;
  transition: all 0.3s ease;
  z-index: 1;
}

.header h1 {
  text-align: center;
  justify-self: center;
  padding: 25px;
  width: fit-content;
  background: linear-gradient(160deg,rgba(255, 255, 255, 0.5) 40%, rgba(219, 219, 219, 0.5) 45%);
  box-shadow: black 0 0 10px;
  border: rgba(255, 255, 255, 0.5) double 5px;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 45px;
  transition: all 0.2s ease;
}

.back:hover, .header h1:hover {
  transform: scale(1.05);
}

div.gallery {
  border: 1px solid #000000;
  box-shadow: #000000 4px 6px 4px;
  transition: all 0.4s ease;
}

div.gallery:hover {
  box-shadow: #000000 2px 4px 14px;
  transform: scale(1.03);
}

div.gallery img {
  width: 100%;
  height: auto;
  border: 10px solid white;
  object-fit: cover;
}

div.desc {
  padding: 15px;
  text-align: center;
  background-color: white;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .back {
    position: relative;
    margin-bottom: 25px;
  }

  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}