* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Neue Montreal";
  background: #0f0f0f;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 3em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.links {
  display: flex;
  gap: 3em;
}

a {
  text-decoration: none;
  color: #a9a9a9;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 3em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero {
  width: 100%;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: -1;
}

h1 {
  width: 100%;
  color: #7c7c7c;
  font-size: 15vw;
  font-weight: 400;
  letter-spacing: -0.05em;
}

p {
  font-size: 1.5vw;
  color: #3d3d3d;
}

.btn {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0084ff;
  color: #fff;
  font-size: 12px;
  border-radius: 30px;
  padding: 1em 2em;
  cursor: pointer;
  z-index: 2;
}

.img-gallery-container {
  width: 100vw;
  padding-top: 100vh;
}

.img {
  position: relative;
  margin-bottom: 1em;
  width: 400px;
  height: 500px;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.img:nth-child(1),
.img:nth-child(3) {
  left: 75%;
}

.img:nth-child(2),
.img:nth-child(4) {
  left: 25%;
}

.img.reorder {
  position: absolute;
  top: 47.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 400px;
}

.img.reorder:nth-child(1) {
  transform: translate(-50%, -50%) rotate(10deg);
}

.img.reorder:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-5deg);
}

.img.reorder:nth-child(3) {
  transform: translate(-50%, -50%) rotate(2deg);
}

.img.reorder:nth-child(4) {
  transform: translate(-50%, -50%) rotate(-2deg);
}
