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

body #ham {
  display: none;
}

body .header {
  padding: 20px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  background: rgba(128, 128, 128, 0.322);
}

body .header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px;
  background: #123355;
}

body .header__nav p {
  font-size: 20px;
  cursor: pointer;
  color: white;
}

body .article {
  width: 70%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 70px;
}

body .article img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 65%;
}

body .article #krv {
  width: 65%;
}

body .article #btndno {
  font-size: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: #123355;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 10px;
  cursor: pointer;
}

body .article h2 {
  font-size: 18pt;
}

body .article p, body .article strong {
  font-size: 16pt;
}

body .article #prod {
  width: 30%;
}

body .article .paznja {
  background: #123355;
  padding: 20px;
}

body .article .paznja p {
  font-size: 18pt;
  color: white;
}

body .article #zavrsava {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body .article #zavrsava #timer {
  background: linear-gradient(135deg, #ff9a9e, #f36);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
  color: white;
  font-size: 50pt;
  margin-top: 15px;
  font-weight: 700;
  padding: 10px;
  border-radius: 10px;
}

body .article__forma {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #efefef;
  padding: 10px;
  -webkit-box-shadow: 0 0 4px gray;
          box-shadow: 0 0 4px gray;
}

body .article__forma img {
  width: 250px;
}

body .article__forma p {
  text-align: center;
}

body .article__forma input {
  margin-top: 10px;
  width: 50%;
  height: 2.5rem;
  padding: 5px;
  font-size: 16pt;
  outline: none;
  border-radius: 5px;
  border: 1px solid black;
}

body .article__forma button {
  margin-top: 10px;
  width: 50%;
  height: 2.5rem;
  font-size: 16pt;
  font-weight: 700;
  cursor: pointer;
  background: #123355;
  color: white;
  border: none;
  border-radius: 5px;
}

body .article #commhead {
  background: #45688e;
  color: white;
  padding: 5px;
  font-size: 15pt;
  margin-top: 20px;
}

body .article .comments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
  margin-bottom: 10px;
}

body .article .comments #single-comment {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

body .article .comments #single-comment #compic {
  width: 60px;
  margin-left: 0;
  margin-right: 5px;
  display: block;
}

body .article .comments #single-comment div p, body .article .comments #single-comment div strong {
  font-size: 14pt;
}

@media screen and (max-width: 1249px) {
  body .header {
    width: 100%;
  }
  body .article {
    width: 95%;
  }
  body .header__nav p {
    font-size: 14px;
  }
}

@media screen and (max-width: 800px) {
  body .article img {
    width: 95%;
  }
  body .article__forma img {
    width: 150px;
  }
  body #ham {
    display: block;
    width: 50px;
    height: 50px;
  }
  body .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
  }
  body .header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: none;
  }
  body .header__nav p {
    margin-top: 10px;
  }
  body .article #prod {
    width: 50%;
  }
  body .article #krv {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */