* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI Variable",
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
}

html,
body,
div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
ol,
ul,
li,
form,
fieldset,
legend,
label,
table,
header,
footer,
nav,
section,
figure {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100vh;
  margin: 0;
}

body {
  background-color: black;
  color: hsl(0, 0%, 98%);

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga", "kern";
}

@media only screen and (min-width: 800px) {
  body {
    background-image: url("/static/bg.webp");
    background-size: cover;
  }
}

.container {
  display: block;
  background: hsl(216, 28%, 7%);
  height: 100vh;
  width: min(800px, 100vw);
  margin: 0 auto;
  overflow: auto;
  padding: 1rem 2rem;
}

.breadcrumb {
  margin-bottom: 2rem;
}

.content {
  min-height: 100vh;
  margin: 2rem 0 0 0;
}

.footer-line {
  margin: 0.5rem 0;
  text-align: center;
}

.footer-line-multi {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

a {
  color: hsl(0, 0%, 98%);
  text-decoration: none;
  font-weight: bold;
}

.logo-h1 {
  width: min(300px, 100%);
  margin: 0 auto 3rem auto;
  aspect-ratio: 4.42;
}

figure {
  display: block;
  max-width: 100%;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  border: 0;
}

p {
  margin: 0 0 12px;
}
ul {
  list-style: disc;
}
ul,
ol {
  padding: 0;
  margin: 0 0 12px 25px;
}
li {
  margin: 0 0 12px 0;
}
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

h1 {
  font-size: 48px;
  line-height: 1;
  margin: 1em;
  font-weight: 600;
  text-align: center;
}

h1 a {
  text-decoration: none;
  color: #282b30;
}

strong {
  font-weight: 600;
}

figcaption {
  display: none;
}

#menu {
  width: 100%;
  background: #f7f7f7 none repeat scroll 0 0;
  padding: 30px 0;
}

#menu ul {
  max-width: 1024px;
  margin: 0 auto;
}

#menu li {
  display: inline;
  list-style: none; /* pour enlever les puces sur IE7 */
}

.album-list {
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-img {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;

  padding: 0.5rem;
  padding-bottom: 1rem;

  font-size: 2rem;
  border: 2px solid hsl(214, 12%, 27%);
  background: hsl(214, 25%, 11%);
  border-radius: 16px;

  flex-direction: column;

  transition: all 50ms ease-out;
}

.menu-img:hover {
  scale: 1.02;
}

.menu-img img {
  width: 100%;
  aspect-ratio: 1.5;

  border-radius: 8px;
  border: 1px solid hsl(0, 0%, 18%);

  object-fit: cover;
}

@media only screen and (min-width: 500px) {
  .menu-img {
    flex-direction: row;
    padding-bottom: 0.5rem;
    gap: 2rem;
  }

  .menu-img img {
    height: 6rem;
    width: 9rem;
  }
}

.album_title {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video {
  width: 100%;
  margin: 0 0 24px 0;
}
.video__container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  padding-top: 35px;
  height: 0;
  overflow: hidden;
}
.video__container iframe,
.video__container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2% 0 15% 0;
}
.video-desc {
  width: 100%;
  max-width: 740px;
  margin: 12px auto;
}

.additionnal-infos {
  width: 100%;
  height: auto;
  float: left;
}

.gallery {
  width: 100%;

  margin-top: 1em;

  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  display: grid;
  gap: 1rem;
  align-items: center;

  grid-auto-rows: max-content;
}

@media only screen and (min-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media only screen and (min-width: 800px) {
  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

.gallery a {
  line-height: 0;
}

.gallery__img--main a {
  width: auto;
  height: auto;
}

.thumbnail {
  text-align: center;
}

.gallery__title {
  line-height: 14px;
  font-size: 14px;
  opacity: 0.8;
  margin-top: 5px;
  width: 100%;
  float: left;
}

.gallery .thumbnail {
  transition: all 50ms ease-out;
}

.gallery .thumbnail:hover {
  scale: 1.02;
}

footer {
  margin-top: 2rem;
  width: 100%;
  float: left;
}

footer p {
  text-align: center;
}
footer span:not(:last-child):after {
  content: " - ";
}

.pswp__dynamic-caption {
  color: #fff;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  transition: opacity 120ms linear !important; /* override default */
}

.pswp-caption-content {
  display: none;
}

.pswp__dynamic-caption a {
  color: #fff;
}

.pswp__dynamic-caption--faded {
  opacity: 0 !important;
}

.pswp__dynamic-caption--aside {
  width: auto;
  max-width: 300px;
  padding: 20px 15px 20px 20px;
  margin-top: 70px;
}

.pswp__dynamic-caption--below {
  width: auto;
  max-width: 700px;
  padding: 15px 0 0;
}

.pswp__dynamic-caption--on-hor-edge {
  padding-left: 15px;
  padding-right: 15px;
}

.pswp__dynamic-caption--mobile {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;

  right: 0;
  bottom: 0;

  /* override styles that were set via JS.
    as they interfere with size measurement */
  top: auto !important;
  left: 0 !important;
}
