/* css contenitore e articoli*/
.main-page{
  width: 900px;
  height: auto;
  position: relative;
  top: 370px;
  margin: auto;
  overflow: auto;
  padding-bottom: 30px;
	margin-bottom: 30px;
	/*box-shadow: 0px 0px 9px #646464;*/
	border-radius: 10px;
}

.new-article-conteiner{
	margin-left: auto;
	margin-right: auto;
	width: 82%;
  height: auto;
	min-height: 200px;
	margin-top: 20px;
	border-radius: 10px;
	border-top: 6px solid #b71705;
	box-shadow: 0px 0px 9px #646464;
  display: grid;
  grid-template-columns: 70% 30%;
  grid-template-rows: auto;
  align-items: center;
  justify-items: center;
  cursor: pointer;

}



.new-article{
	margin-left: auto;
	margin-right: auto;
	width: 98%;
  margin-top: 10px;
	height: 150px;
  cursor: pointer;
}

.title-article-h1{
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
	font-size: 22px;
	font-weight: bold;
	font-family: 'Lora', serif;
  width: 100%;
  word-wrap:break-word;
}

.title-article-h1:hover{
  text-decoration: underline;
}

.descr-article{
	text-align: center;
	padding-left: 15px;
	padding-right: 15px;
  width: 100%;
  word-wrap:break-word;
}

.new-article-text{
  width: 100%;
}

.new-article-image{
/*  text-align: center;
 white-space: nowrap;*/
width: 100%;
height: 100%;
padding: 11px;
display: grid;
align-items: center;
justify-items: center;
}

.helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.new-article-img{
  max-width: 100%;
   max-height: 100%;




}
@media screen and (max-width: 930px) {
  .main-page{
    width: 98%;
    box-shadow: 0px 0px 0px white;
  }
  .new-article-conteiner{

  	width: 95%;
  }

}

@media screen and (max-width: 400px) {

  .new-article-conteiner{
  	width: 100%;
  }
  .title-article-h1{
  	font-size: 18px;

  }
}

@media screen and (max-width: 300px) {

  .title-article-h1{
  	font-size: 16px;

  }

}
