/*Font for titles*/
@font-face {
  font-family: "DINProTitle";
  src: url("./fonts/DINPro-Bold.otf");
  font-style: normal;
  line-height: normal;
}
/*Font for descriptions*/
@font-face {
  font-family: "DINProDescription";
  src: url("./fonts/DINPro-Regular.otf");
  font-style: normal;
  line-height: normal;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body, html{
  margin: 0;
  padding: 0;
  max-width: 610px;
  max-height: 230px;
}
.container{
  display: flex;
  background: #FFFFFF;
  margin: 0;
  padding: 0;
  height: 100%;
}
.news{
  flex-direction: column;
  width: 100%;
  position: relative;
  height: 230px;
}
.logo-bar{
  position: absolute;
  background: url(../assets/logo-bar.png);
  width: 86px;
  height: 7px;
  border-radius: 20px;
  left: 20px;
}
.title-container{
  position: relative;
  background-color: #EFEFEF;
  margin-bottom: 22px;
  display: flex;
  height: 93px;
}
.title{
  /* Título noticia lorem ipsum sit amet consecteuer */
  font-family: 'DINProTitle';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  margin-top: 23px;
  margin-left: 23px;
  padding-bottom: 12.93px;
  color: #4D4D4D;
}
.logo-bulb{
  position: absolute;
  width: 85px;
  height: 80px;
  right: 19px;
  top: 6px;
  bottom: 7px;
  background: url(../assets/logo-bulb.png)
}
.description-container{
  margin-left: 23px;
  margin-right: 23px;
}
.description{
   font-family: 'DINProDescription';
   font-style: normal;
   font-weight: 400;
   font-size: 20px;
   line-height: 26px;
   color: #4D4D4D;
   height: 100px;
    overflow: hidden;
 }



