body {
    background-attachment:fixed;
    background-image:url("../img/Background/background1.svg");
    background-size:contain;
    background-repeat: no-repeat;
    background-color: #ffffff;
 
    
   
}

.logo {
    margin-left: 25px;
}
h1 {
    padding-left: 25px;
    margin-top : 60px;
    margin-bottom: 30px;
    font-size: 48px;
   
}

h2 {
    padding-left: 25px;
    margin-bottom: 20px;
}

h4 {
   font-size: 24px; 
}

a { 
    color: #18191F;
}

.news_container {
    padding-top: 20px;
    padding-bottom: 70px;
    width: 100vw;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content:flex-start;
    align-items:center;
}

.news {
    position: relative;
    margin: auto;
    width: 95%;
    color: #18191F;
    background-color: #ffffff;
    display: block;
    margin-bottom: 20px;
    padding: 15px;
    border-style: solid;
    border-width: 1px;
    border-color:#FEB930;
    border-radius: 8px;
}

.star {
    position: absolute;
    top: 10px; 
    right: 10px;
 }

.iconbar {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    margin-top: 10px; 
}
  
 .iconbar span {
    font-size: medium;
     display: flex;
     align-items: center;
 }
  
 .iconbar img {
    margin-right: 5px; 
 }

 
 
/*  media queries */

@media (min-width: 630px) {
    /*from 630px*/
    body {
        background-attachment:fixed;
        background-image:url("../img/Background/background2.svg");
        background-size:cover;
        background-repeat: no-repeat;
       
    }
}

  @media (min-width: 800px) {
    /*from 800px*/
    .titles {
      text-align: center;
      padding-left: 0px;
    }

    .news {
        text-align: center;
        font-size: larger;
    }

   
  }