.topnav a {
  /* float: center; */
  text-align: center;

}

main {
  margin-top: 120px;
}

footer{
  text-align: center;
  font-size: 12px;
  margin-top: 3%;
}

.carousel-inner h1{
  color: rgb(22, 105, 65);
  text-shadow: 
  -1px -1px 0 white,  
  1px -1px 0 white,
  -1px 1px 0 white,
  1px 1px 0 white; /* Add stroke effect */
}


/* ---------------user section------- */

.user {
  background-image: url('image/background5.png'); /* Specify the path to your background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0; /* Add some padding for spacing */
}

.user-page h1{
  color: rgb(22, 105, 65);
  margin-top: 15px;
  text-align: center;
}


.container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.user-text {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-align: center;
  color: black;
  /* font-size: 25px; */
  font-weight: bold;
}

@media only screen and (max-width: 860px) {
  .user-text {
    font-size: 12px;
  }
}

@media only screen and (max-width: 320px) {
  .user-text {
    font-size: 25px;
  }
}



.user-item {
  width: 100%;
  height: auto;
  min-width: 10%;
  min-height: 10%;
  padding: 15px;
}

.user-group {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 1px 0 1px;
}

.user h3 {
  font-family: 'Gorditas', sans-serif;
  font-size: 35px;
  text-align: center;
  color: floralwhite;
}



/* a responsive navigation menu */
@media screen and (max-width: 1200px) {
  .user-group {
    width: 33.33%;
  }
}

@media screen and (max-width: 700px) {
  .user-group {
    width: 50%;
  }
}

@media screen and (max-width: 300px) {
  .user-group {
    width: 100%;
  }
}

.news1 {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* Make both sections stretch to the same height */
}

.left-section {
  flex: 1;
  padding: 20px;
  background-image: url('image/PaperBag.png'); 
  background-size: cover;
  background-position: center;
  border: 1px solid #ccc; 
  min-height: 300px; 
}

.right-section {
  flex: 1;
  padding: 20px;
  background-image: url('image/Logosign.png'); 
  background-size: cover;
  background-position: center;
  border: 1px solid #ccc; 
  min-height: 300px; 
}

.news1 h2 {
  text-align: center;
  color: rgb(42, 42, 42);
}


footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 2%;
}

footer div:last-child {
  text-align: right;
}