body {
  padding: 0 20px;
  width: 1000px;
  margin: 10px auto;
  text-align: justify;
  font-family: Segoe UI, Tahoma, Verdana, sans-serif;
  font-size: 14px;
  line-height: 150%;
  box-sizing: padding-box;
}

form {
  padding: 0;
  margin: 0;
}

form, form * {
    font-family: Constantia, Times New Roman, serif;
    font-size: 16px;
}

form input[type="text"] {
    width: 674px;
    margin-left: 5px;
    padding: 6px 10px;
    border: 1px solid gray;
    border-radius: 3px 0 0 3px;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2) inset;
}

form input[type="submit"] {
    width: 200px;
    margin-left: -5px;
    padding: 5px 8px;
    border: 1px solid rgb(60, 140, 204);
    border-left: 0;
    background-color: rgb(60, 140, 204);
    color: white;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    box-shadow: 1px 2px 5px rgba(100, 180, 244, 1) inset;
}

form a {
    position: absolute;
    top: 12px;
    right: 20px;
}

#fb {
    width: 100%;
    margin: 15px 39px;
}

h1 {
  font-size: 25px;
  line-height: 120%;
}

h2 {
  font-size: 20px;
  line-height: 150%;
  font-weight: normal;
}

h5 {
  font-size: 14px;
  color: red;
  padding: 0;
  margin: 0 50px 20px 39px;
  font-weight: normal;
}

#gazeta_article_body h6 {
  font-size: 12px;
  font-weight: normal;
  line-height: 21px;
  color: #333;
  margin-left: 50px;
  padding: 5px 12px;
  border-style: solid;
  border-width: 1px;
  background-color: #f7f7f7;
}

hr {
    border: 0;
    border-top: 1px solid gray;
}

hr:last-child {
    display: none;
}

@media screen and (max-width: 1000px) {
    body {
        width: 100%;
    }
    form input[type="text"] {
        width: calc(100% - 286px)
    }
    img {
        max-width: 100%;
    }
}

@media screen and (max-width: 640px) {
    form input[type="text"] {
        width: 51.36%;
    }
    form input[type="submit"] {
        width: 33.333%;
    }
}

@media screen and (max-width: 560px) {
    form input[type="text"] {
        width: calc(100% - 173px - 40px - 40px);
    }
    form input[type="submit"] {
        width: 173px;
    }
}