.body{
    padding: 0%;
    margin: 0%;
    font-family: "Mulish", sans-serif;
}

.logo {
    position: absolute;
    align-items: center;
    font-size: 25px;
    display: flex;
    justify-content: flex-start;
    margin-left: 2rem;
    margin-top: 0.5rem;
}

.navigation{
    display: flex;
    justify-content:flex-end;
    height: 50px;
    width: 100%;
    align-items: center;
    background-color: rgb(0, 0, 0);
}
.navigation  a{
    margin-right: 50px;
    text-decoration: none;
    font-family: "Mulish", sans-serif;
    font-weight: bold;
    color: white;
    font-size: 15px;
    padding: 0.4rem;
    border-radius: 7px;
    opacity: 0.9;
}

.navigation a:hover{
    color: white;
    opacity: 1;
}



.news {
    background-color: #f2e9e9;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .news h3 {
    font-size: 24px;
    margin-top: 0;
  }
  
  .news p {
    font-size: 18px;
    color: #666;
  }