body {
  margin: 0;
  background-color: rgb(34, 34, 34);

  align-items: center;
}
.page-container {
  position: relative;
}
html {
  scroll-behavior: smooth;
}
.gallery {
  margin-left: auto;
  margin-right: auto;
  width: 85%;
  max-width: 1200px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.page-container h2 {
  display: block;
  justify-content: center;
  text-align: center;
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background-color: rgb(34, 34, 34);
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  color: white;
  font-weight: 800;
  height: 50px;
  line-height: 50px;
  text-shadow: 2px 2px rgb(174, 174, 174);
}

a {
  color: rgb(173, 217, 255);
  text-decoration: underline;
  text-shadow: none !important;
  transition: 0.25s;
}
a:hover {
  color: rgba(173, 217, 255, 0.589);
}
.gallery img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(191, 191, 191, 0.1);
  object-fit: cover;
}
.gallery video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(191, 191, 191, 0.1);
}
.gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.footerseperator {
  background-image: linear-gradient(rgb(34, 34, 34), rgb(34, 34, 34));
  width: 100%;
  display: flex;
  flex-direction: row;
  height: 250px;
}

/* ____________________ Responsive ____________________ */
@media (max-width: 1024px) {
  .page-container {
    margin-top: 150px;
  }
}

@media (max-width: 768px) {
  .page-container {
    margin-top: 170px;
  }
  .gallery {
    grid-template-columns: 1fr;
    width: 70%;
  }

  h2 {
    margin-top: 50px;
  }
}
