/* style.css */
body, html {
  color: #fff;
  background-image: url("./background-c3kt5f70.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  margin: 0;
  font-family: sans-serif;
}

.container {
  display: flex;
  text-align: center;
  background-color: #00000080;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  height: 100%;
}

h1 {
  margin-bottom: 1rem;
  font-size: 3rem;
}

p {
  max-width: 800px;
  margin: 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

.container a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dotted #fff;
}

.container a:hover {
  border-bottom-style: solid;
}

nav {
  position: fixed;
  display: flex;
  z-index: 200;
  gap: 2rem;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
}

nav a {
  color: #ffffffb3;
  text-decoration: none;
  border-bottom: 1px dotted #ffffffb3;
  transition: all .3s;
}

nav a:hover, nav a.selected {
  color: #ffffffe6;
  border-bottom: 1px solid #ffffffe6;
}

#overlay {
  position: fixed;
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  display: none;
  opacity: 0;
  z-index: 100;
  background-color: #ffffffb3;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#overlay-content {
  color: #000;
  height: 100%;
}

.image-gallery {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.image-wrapper {
  position: absolute;
  cursor: grab;
  will-change: transform;
  width: 400px;
  height: auto;
}

.image-wrapper:active {
  cursor: grabbing;
}

.image-wrapper img {
  user-select: none;
  -webkit-user-drag: none;
  will-change: filter;
  width: 100%;
  height: auto;
}

body.overlay-is-open nav a {
  color: #000000b3;
  border-bottom-color: #000000b3;
  transition-delay: .25s;
}

body.overlay-is-open nav a:hover, body.overlay-is-open nav a.selected {
  color: #000c;
  border-bottom-color: #000c;
}
