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

.main {
  background-image: url('https://share.eunethosting.com/dnscp/background4.jpg');
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 700px;
  z-index: -1;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.box {
  border-radius: 10px;
  background-color: rgba(255,255,255,0.8);
  max-width: 100%;
  width: 880px;
  padding: 50px;
  padding-top: 10px;
  min-height: 500px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  z-index: 10;
  color: #333333;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-align: center;
}

p {
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 10px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: #1e6eaa;
}

a:hover {
  text-decoration: underline;
}

.content {

}

.footer {
  font-size: 0.7rem;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  color: #4d4d4d;
  font-weight: 300;
  width: 100%;
}

.item-center {
  display: inline-flex;
  align-items: center;
}

.divider{
  margin: 50px 10% 30px 10%;
  border: 0;
  height: 1px;
  background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
}

@media (max-width: 620px) {
  .footer {
    flex-direction: column;
  }

  .item-center {
    margin-bottom: 10px;
  }

  .item-center:last-child {
    margin-bottom: 0;
  }

  .box {
    height: 90%;
  }
}

@media (max-width: 555px) {
  h1 {
    font-size: 1.4rem;
  }
}

@media (max-width: 500px) {
  .box {
    height: 100%;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 1rem;
  }

  .box {
    padding: 35px;
  }
}

@media (max-width: 340px) {
  h1 {
    font-size: .9rem;
  }
}

@media (max-width: 300px) {
  h1 {
    font-size: .8rem;
  }

  .box {
    padding: 15px;
  }
}

div.article > p:first-of-type {
  font-weight: bold;
  margin-bottom: 1em;
  font-size: 1.25em;
}

div.article > p:last-of-type {
  display: inline;
  font-weight: normal !important;
  font-size: inherit !important;
}

div.article h1 {
  font-size: 1em;
  font-weight: normal;
}