footer {
     width: 100%;
     background-color: #00ffef;
     color: black;
     padding: 20px 0;
     text-align: center;
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     gap: 20px;
     margin-top: 150px;
}
 footer .footer-content {
     width: 90%;
     margin: auto;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 20px;
}
 footer .footer-content p {
     margin: 0;
     font-size: 1rem;
     font-weight: bold;
}
 .contact-info {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 20px;
     flex-wrap: wrap;
}
 .contact-info a {
     text-decoration: none;
     color: black;
     font-size: 1rem;
     font-weight: bold;
}
 @media (max-width: 700px) {
     .contact-info {
         flex-direction: column;
    }
}
