* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

p, li {
  font-size: 16pt;
}

h1 {
  font-size: 24pt;
}

h2 {
  font-size: 18pt;
}

#main {
  margin-left: 50px;
  margin-right: auto;
  display: block;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: black;
}
.header__navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 60%;
}
.header__navbar img {
  width: 50px;
  height: 50px;
}
.header__navbar__nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header__navbar__nav p {
  margin-right: 20px;
  color: gray;
  font-size: 12pt;
  cursor: pointer;
  transition: 400ms;
}
.header__navbar__nav p:hover {
  color: #eaaf2c;
}
.header__navbar #hamburger {
  width: 30px;
  height: 30px;
}
.header__track {
  background: #4800fc;
  color: white;
  width: 100%;
  padding: 10px;
}
.header__track p {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.container {
  width: 60%;
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 10px;
  margin-left: auto;
  margin-right: auto;
}
.container__left__box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #eaaf2c;
}
.container__left__box div {
  display: grid;
  grid-template-columns: 15% 85%;
  place-items: center;
}
.container__left__box div img {
  width: 100%;
}
.container__left__box div #prod-b {
  margin-left: 30px;
}
.container__left__box span {
  text-align: center;
  background: #eaaf2c;
  padding: 4px;
}
.container__left__prodbox {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 20px;
  background: #eaaf2c;
  padding: 40px;
}
.container__left__prodbox img {
  width: 100%;
}
.container__left__prodbox p {
  text-align: center;
  margin-top: 50px;
}
.container__left .forma {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #eaaf2c;
  padding: 30px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 4px black;
}
.container__left .forma input {
  outline: none;
  border: none;
  width: 300px;
  margin-top: 10px;
  height: 2rem;
  padding: 5px;
  font-size: 14pt;
}
.container__left .forma button {
  margin-top: 10px;
  background: #4800fc;
  color: #eaaf2c;
  border: none;
  cursor: pointer;
  font-size: 14pt;
  padding: 5px;
  font-weight: 700;
}
.container__left .single-comment {
  display: grid;
  grid-template-columns: 7% 93%;
  margin-top: 30px;
}
.container__left .single-comment img {
  width: 50px;
}
.container__left .single-comment div strong {
  display: flex;
  font-size: 11pt;
  color: #4800fc;
  margin-bottom: 5px;
}
.container__left .single-comment div p {
  font-size: 11pt;
}
.container__left #zadnji {
  background: #4800fc;
  padding: 5px;
  font-size: 18pt;
  color: white;
  cursor: pointer;
  border: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.container__left .footer {
  width: 100%;
  background: black;
  margin-top: 20px;
}
.container__left .footer p {
  color: white;
  text-align: center;
  padding: 10px;
}
.container__right__box {
  background: rgba(190, 190, 190, 0.377);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.container__right__box img {
  width: 100%;
}
.container__right__box p {
  font-size: 13pt;
  padding: 5px;
}

@media screen and (max-width: 1400px) {
  .container {
    width: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 450px) {
  .header__navbar {
    flex-direction: column;
    width: 100%;
    padding-bottom: 30px;
  }
  .header__navbar__nav {
    display: none;
  }
  .container .container__left img {
    width: 100%;
  }
  .container__left {
    padding: 10px;
  }
  .header__track p {
    width: 100%;
  }
  .container__left__prodbox {
    grid-template-columns: 1fr;
  }
  .container .container__left img {
    width: 40%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .container .container__left img {
    width: 100%;
  }
  .container__left .single-comment {
    gap: 5px;
  }
  #main {
    margin-left: 0;
  }
  .container__left__box div {
    grid-template-columns: 1fr;
  }
  .container__left__box div #prod-b {
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
  .container__left__box {
    padding: 20px;
  }
}/*# sourceMappingURL=style.css.map */