body {
    background-attachment:fixed;
    background-image:url("./img/Background/background1.svg");
    background-size:contain;
    background-repeat: no-repeat;
    background-color: #ffffff;
   
}
.logos {
    display: flex;
    flex-direction: row;
    margin:20px 25px 60px;
    justify-content: space-between;
}

.profileLogo {
    margin-top: 5px;
}

h1 {
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 48px;
   
}

h2 {
    font-size: 20px;
    margin-top: 50px;
    padding-bottom: 15px;
    align-self: start;
    margin-left: 4vw;
}

h3 {
    padding: 25px;
    font-size: 20px;
}

h4 {
   font-size: 24px; 
}

a { 
    color: #18191F;
    display: block;
}

.news_container {
    padding-top: 20px;
    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; 
 }

.aboutus p {
    padding: 0 4vw;
}
.button {
    margin: 50px auto 70px;
    width: 20rem;
    height: 3.75rem;
    text-align: center;
    background-color: #FEB930;
    border-radius: 8px;
}

.button span {
    font-size: 20px;
    font-weight: bold;
    line-height: 3.4rem; 
}
/*  media queries */

@media (min-width: 630px) {
    /*from 630px because it is the width of the background img*/
    body {
        background-attachment:fixed;
        background-image:url("./img/Background/background2.svg");
        background-size:cover;
        background-repeat: no-repeat;
       
    }
    
    .button {
        border: solid #18191F;
    }
}

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

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

   
  }