* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  
}

body h1{
  color: #282f59;
}


body p {
  color: #7c7c7c;
}


body a {
  text-decoration: none;
  color: whitesmoke;
}

.logo {
  height: 40px;
}

.row {
  display: flex;
  align-items: center;
  padding-top: 5rem;
}

.navbar {
  background-color: #4642ff;;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  padding: 20px 50px ;
  align-items: center;

}

.navbar ul {
  flex: 1;
  text-align: right;
}

.navbar ul li {
  list-style: none;
  display: inline-block;
  margin: 0 25px;

}



.icon {
  margin: 0;
  padding: 0;
  color: white;
  font-size: 18px;

}

.ctn {
  padding: 10px 20px;
  background: linear-gradient(-225deg, 
  #A445B2 0%, #D41872 52%, #FF0066 100%);
  border-radius: 50px;
}

.ctn:hover {
  background: linear-gradient(-225deg, 
  #FF0066 0% , #D41872 52%, #A445B2 100%)

}


.pictureNews {
  min-width: 35rem;
  max-width: 35rem;
  height: 10rem;
  position: relative;
  
}

.news-post {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding:1rem 5rem 5rem 5rem;
  width: 100%;
  max-width: 98rem;
  /* box-shadow: 0 1.4rem 2rem rgba(0,0,0,.2);  */
} 


.news-post__date span{
  display: block;
  color: rgba(0,0,0,.5);
  font-size: 1.6rem;
  font-weight: 600;
  margin: .5rem 0;
} 

.news-post__title.red,
.news-post__text.red {
  color: #FF0066;
  font-weight: 600;
}

.news-post__text.red span{
 
 color: #000;
 font-weight: 400;
}




.footer {
  flex: 0 1 auto;
  background-color: #add8e6;
  color:#282f59;
  padding: 20px;
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
  
}

.footer__text {
  font-weight: 600;
  font-size: 16px;
}