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

html,
body {
  width: 100%;
  height: 100vh;
  background: #ffffff;
  color: #36301d;
  overflow: hidden;
}

nav {
  position: fixed;
  width: 100%;
  padding: 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Neue World";
  color: #36301d;
  font-size: 24px;
  font-weight: 300;
}

.title {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: "Neue World";
  color: #36301d;
  font-size: 10vw;
  font-weight: 300;
  z-index: 1;
}

.wines {
  position: relative;
  width: 100%;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.wrapper > .transition {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#wrap {
  position: absolute;
  left: 25%;
  width: 150%;
  height: 100vh;
  display: flex;
  align-items: center;
  margin: 0 25%;
}

.block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  width: 400px;
  height: 500px;
  margin: 0 1em;
  background: #2e2918;
  overflow: clip;
  clip-path: inset(0 0 0 0);
}

.product {
  position: relative;
  display: block;
  width: 400px !important;
  height: 500px !important;
  height: auto;
  z-index: 2;
  padding: 4em;
}

.product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

button#closeBtn {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  outline: none;
  padding: 2em;
  font-family: "Neue World";
  font-size: 20px;
  font-weight: 300;
  color: #ecaa5d;
  cursor: pointer;
  pointer-events: all !important;
}

@media (max-width: 768px) {
  .title {
    font-size: 42px;
  }

  .tagline {
    font-size: 15px;
  }

  .outline {
    width: 92%;
  }
}
