.footer {
 
  display: flex;
  flex-direction: column;
  gap: 0;
  
}
.footer-first {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 80px;
  padding-bottom: 60px;
  padding-top: 60px;
  background-color: black;
  margin: 0;
  border-color: black;
}
.footer-first .footer-message {
  color:white;
  font-size: 1.2rem;
  flex: 1;
  text-align: center;
  max-width: 45%;
  line-height: 1.5;
}
.footer-first .footer-title h1 {
  color: white;
  font-size: 2rem;
  flex: 1;
  width: 40%;
}
.subject {
  color: rgb(143, 230, 143);
  font-weight: bold;
}
.footer-second {
  margin: 0;
  padding: 10px;
  background-color: black;
  border: 0;
  border-color: black;
}
.footer-second p {
  color: white;
  text-align: center;
  font-size: 0.75rem;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .footer-first {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    padding: 40px;
    padding-bottom: 10px;
  }
  .footer-message p {
    padding: 20px;
    font-size: 1em;
  }
  .footer-first .footer-message,
  .footer-first .footer-title h1 {
    max-width: 100%;
    text-align: center;
    margin: 0 auto ;
  }
  .footer-second {
    padding: 20px;
  }
}
