.news-title {
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 28px;
  margin-top: 100px;
}

.news-box-container-row-one {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 20px;
}

.news-box {
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 100px;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  height: 500px;
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
}

.news-box h3 {
  font-family: "JetBrains Mono Light", sans-serif;
  font-weight: 100;
  margin-top: 20px;
  margin-bottom: 20px;
}

.news-box p {
  margin-top: 30px;
  margin-left: 40px;
  margin-right: 40px;
  font-family: "JetBrains Mono Light", sans-serif;
  font-weight: 100;
}

.news-box:hover {
  box-shadow: 0 5px 7px rgba(0,0,0,0.4);
}

.news-image {
  border-radius: 10px;
  margin-left: 40px;
  margin-right: 40px;
  transition: 0.2s;
}

.news-image:hover {
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.legal-conatiner {
  display: flex;
  flex-direction: column;
}

.legal-conatiner p {
  margin-bottom: 10px;
  font-family: "JetBrains Mono Light", sans-serif;
}

.legal-conatiner a {
  margin-top: 5px;
  text-decoration: none;
  font-size: 16px;
  color: #333;
  transition: color 0.1s ease;
  margin-right: 20px;
  font-family: "JetBrains Mono Light", sans-serif;
}

.legal-conatiner a:hover {
  color: #007bff;
}

.footer {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: left;
}

.footer img {
  justify-content: left;
  margin-right: 500px;
}

.contact-conatiner {
  display: flex;
  flex-direction: column;
  margin-right: 50px;
  font-family: "JetBrains Mono Light", sans-serif;
}

.contact-conatiner a {
  margin-top: 5px;
  text-decoration: none;
  font-size: 16px;
  color: #333;
  transition: color 0.1s ease;
  margin-right: 20px;
  font-family: "JetBrains Mono Light", sans-serif;
}

.contact-conatiner a:hover {
  color: #007bff;
}

.contact-conatiner p {
  margin-bottom: 10px;
  font-family: "JetBrains Mono Light", sans-serif;
}

.links-conatiner {
  display: flex;
  flex-direction: column;
  margin-right: 50px;
  font-family: "JetBrains Mono Light", sans-serif;
}

.links-conatiner a {
  margin-top: 5px;
  text-decoration: none;
  font-size: 16px;
  color: #333;
  transition: color 0.1s ease;
  margin-right: 20px;
  font-family: "JetBrains Mono Light", sans-serif;
}

.links-conatiner a:hover {
  color: #007bff;
}

.links-conatiner p {
  margin-bottom: 10px;
  font-family: "JetBrains Mono Light", sans-serif;
}

@media only screen and (max-width: 1080px) {
  .heading {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px;
  }

  .top-bar {
    flex-direction: column;
    align-items: center;
  }

  .top-bar-btn {
    margin-top: 10px;
  }

  .heading img {
    margin: 0;
    width: 150px;
    height: auto;
  }

  .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
  }

  .nav a {
    margin: 5px 0;
  }
	
	.info-box-conatiner {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .info-box {
    margin-left: 0;
	  margin-top: 20px;
    margin-right: 0;
    width: 90%;
  }

  .heading img {
    margin-left: 0;
    width: 80%;
    height: auto;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .contact-conatiner,
  .links-conatiner,
  .legal-conatiner {
    margin: 10px 0;
  }
}

