html,body{
  height: 100%;
  margin: 0;
}
body{
  min-width: 320px;
  font-size: 15px;
  line-height: 1.73333333;
  font-family: 'Open Sans', sans-serif;
}
* {
  box-sizing: border-box;
} 
.wrapper{
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
/* style for news section  */
.news-holder{
  padding: 20px;
  /* background: #f4f5fd; */
  background: #fff;
  border-radius: .65rem;
  /* font-family: 'Roboto', sans-serif; */
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2), 0px 1px 1px 1px rgba(0,0,0,0.14), 0px 1px 3px 1px rgba(0,0,0,0.12);
}
.news-holder h1{
  margin: 0 0 10px;
  color: #5f5f62;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  font-weight: 600;
}
.add-scroll{
  max-height: 400px;
  overflow-y: auto;
}
.news-box{
  color: #263055;
  font-size: 16px;
  line-height: 20px;
  padding: 25px 0 0;
  text-align: left;
}
.news-box p{
  margin: 0 0 10px;
}
.news-box h2{
  margin: 0 0 12px;
  color: #000;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}
.news-box .date{
  color: #5f5f62;
  display: block;
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 17px;
}
.tag-holder{
  display: flex;
}
.tag-holder a{
  color: blue;
  text-decoration: none;
  margin-left: 10px;
}
.tag-holder a:first-child{
  margin-left: 0;
}