* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  height: 100%;
  width: 100%;
  background-color: black;
  color: white;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: whitesmoke;
}
#main {
  /* height: 100vh;
  width: 100vw; */
  background-color: black;
  color: whitesmoke;
  font-family: "Raleway", sans-serif;
}
.nav {
  height: 60px;
  /* background-color: red; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
}
#nav-right {
  display: flex;
  /* flex-wrap: wrap; */
  /* width:40%; */
  /* justify-content: space-between; */
  align-items: center;
  gap: 38px;
}
.nav h3 {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 26px;
}

#showcase {
  width: 100vw;
  height: calc(95vh - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
#showcase .scrollMessage {
  border: 1px solid #858585;
  border-radius: 50%;
  padding: 10px 10px;
  color: #858585;
  position: absolute;
  left: 50px;
  bottom: 50px;
  overflow: hidden;
}
#showcase .scrollMessage > p {
  animation-name: scrollAnime;
  animation-duration: 1.8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: 0.5s;
  /* animation-fill-mode: backwards; */
}
@keyframes scrollAnime {
  0% {
    opacity: 0.5;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(30px);
  }
}
#showcase .imageContainer {
  position: relative;
}
#showcase .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  /* background-color: blueviolet; */
}
#showcase .text h1 {
  text-transform: uppercase;
  width: 60%;
  font-size: 8vw;
  font-weight: 600;
  letter-spacing: 4px;
  /* background-color: pink; */
  text-align: center;
  line-height: 7vw;
}

#showcase .text #one {
  text-align: left;
}
#showcase .text #three {
  text-align: right;
}
#showcase img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 250px;
  height: 400px;
  object-position: top;
  object-fit: cover;
  transform-origin: center;
}

#page1 {
  height: 80vh;
  width: 60vw;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /* overflow-x: hidden; */
}
#page1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  /* overflow-x: hidden; */
}
#jockerText {
  width: 100vw;
  display: flex;
  align-items: center;
}
#jockerText h1 {
  flex-shrink: 0;
  text-transform: uppercase;
  font-size: 40vw;
  font-weight: 500;
}
#gallery {
  display: grid;
  padding: 5vw 4vw;
  margin: 2vw 0;
  height: 100%;
  grid-template-columns: 1fr 1fr;
  justify-self: center;
  align-self: center;
  column-gap: 2vw;
  row-gap: 4vw;
}
#gallery img {
  height: 80vh;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 600px) {
  .nav h3 {
    font-size: 20px;
  }
}
