        ul{
            padding: 0;
            margin: 0;
        }
form{
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin-top: 30px;
  justify-self: center;
}

.news-list {
          list-style-type: none;
          padding: 0;
      }

      .news-item {
          background-color: #fff;
          margin-bottom: 20px;
          padding: 15px;
          border-radius: 8px;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          transition: background-color 0.3s ease;
      }

      .news-item a {
          text-decoration: none;
          color: #416C26;
          font-size: 18px;
          font-weight: bold;
      }
li {
  list-style-type: none;

}

      .news-item p {
          font-size: 16px;
          color: #555;
          margin-top: 5px;
      }

      .news-item:hover {
          background-color: #f1f1f1;
      }

      @media (max-width: 768px) {

        form{
          flex-direction: column;

        }
          .container {
              width: 90%;
          }

          h2 {
              font-size: 20px;
          }

          .news-item {
              padding: 10px;
          }

          .news-item a {
              font-size: 16px;
          }

          .news-item p {
              font-size: 14px;
          }
      }