/*Gallery Styles*/
@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");
  }


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 25px;
  max-width: 1500px;
  width: 100%;
  font-family: 'Continuum-M';
  font-size: larger;
  justify-self: center;
}

.bg {
  background-image: url(/images/3dscamerabg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.back {
  text-align: center;
  padding: 12px;
  position: absolute;
  width: 90px;
  font-size: small;
  color: rgba(0, 0, 0, 0.692);
  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) solid 5px;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 45px;
  transition: all 0.3s ease;
  z-index: 1;
}

.header-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.header h1, .header p {
  text-align: center;
  height: fit-content;
  padding: 25px;
  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, .header p:hover {
  transform: scale(1.05);
}

.ds {
  justify-self: center;
}

.ds img {
  width: 100%;
  max-width: 700px;
  height: auto;
}

.dscam {
  position: absolute;
  top: 450px;
  left: 147px;
  width: 100px;
}

.dscam:after {
  content: "";
  position: absolute;
  left: 0;
  background: radial-gradient(circle,rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  width: 100%;
  height: 100%;
}


/*Slideshow*/

* {box-sizing: border-box}
.mySlides1, .mySlides2 {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 380px;
  position: absolute;
  margin-top: 56px;
  margin-left: 160px;
}

/* Next & previous buttons */
.scroll {
  position: absolute;
  justify-self: center;
  top: 500px;
  display: flex;
  gap: 293px;
}

.prev, .next {
  cursor: pointer;
  width: auto;
  padding: 16px;
  bottom: 130px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  border-radius: 3px 0 0 3px;
}

/* On hover, add a grey background color */
.prev:hover, .next:hover {
  background-color: #f1f1f1;
  color: black;
}