* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  width: 100vw;
  height: 100vh;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}
.main-wrapper {
  width: 70%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  border-left: 1px solid gold;
  border-right: 1px solid gold;
  gap: 70px;
}
.image-wrapper {
  width: 100%;
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image {
  position: absolute;
  top: 100px;
  transform: translateX(-50px);
  width: 300px;
  height: 300px;
  background-size: cover;
  background-position: center;
  transition: opacity 1s; /* Adjust the transition duration as needed */
  opacity: 0;
}
.screw{
    width: 200px;
    height: 200px;
}
.pakovanje {
  width: 200px;
  height: 200px;
}
.info-wrapper {
  color: gold;
}
.info-wrapper .title {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
}
.info-wrapper .opis {
  padding: 15px;
}
.info-wrapper .opis p:nth-child(1) {
  font-size: 1.5rem;
  margin-bottom: 20px;
  margin-top: 10px;
  font-weight: bolder;
}
.info-wrapper .opis p:nth-child(2) {
  margin-bottom: 15px;
}
.info-wrapper .opis p:nth-child(3) {
  text-decoration: underline;
  margin-bottom: 7px;
}
.napomena {
  margin-top: 20px;
}
.text {
  font-size: 1.1rem;
  line-height: 23px;
}
.footer {
  width: 100%;
  background-color: gold;
  padding: 20px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .image {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 350px;
    left: 40%;
  }

  .image-wrapper {
    text-align: center;
    display: flex;
    height: 600px;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .main-wrapper {
    gap: 0;
    width: 100%;
  }
}
