* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica, sans-serif;
}
html,
body {
  width: 100%;
  height: 100%;
}

/* ------------ NAVIGATION BAR------------ */
ul li {
  list-style-type: none;
  font-size: 18px;
  cursor: pointer;
}
nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
}
nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1.8rem;
}
.logo h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 35px;
  font-weight: 300;
}

/* ------------ HEADING ------------ */

.heading h1 {
  font-size: 350px;
  padding-left: 90px;
  font-weight: 100;
}

/* ------------ CONTENT ------------ */
.content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 300px;
  text-align: justify;
}
.content h2 {
  margin-bottom: 4px;
}
.content p {
  font-size: 16px;
}

/* -------------FOOTER--------- */
.footer {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  bottom: 0;
  left: 0;
  padding: 50px 100px;
}
.footer p {
  font-size: 30px;
}
.footer p:first-child {
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
  font-weight: 100;
}

/* ------------IMAGES----------- */
.product-images img {
  position: absolute;
  /* z-index: -200; */
}
#model1 {
  height: 350px;
  border-radius: 6px;
  top: 55%;
  left: 47%;
}
#model2 {
  height: 400px;
  border-radius: 12px;
  z-index: -2;
  top: 40%;
  left: 58%;
}
#model3 {
  height: 380px;
  border-radius: 6px;

  top: 55%;
  left: 70%;
}
