.overlay-text {
    position: absolute; 
    top: 50%; 
    left: 50%;
    bottom: 50px;
    transform: translate(-50%, -100%);
    color: white;
    padding: 10px 20px;
    font-size: 30px;
    text-align: center;
    font-family: "Times New Roman", Times, serif; 
  }

.pp{
    font-size: 20px;
    text-align: center;
    margin-top: 50px;
}

.about-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 35px;
}

.content{
    flex: 1;
    margin-left: 300px;
    text-align: left;
    margin-top: 50px;
}

.footerContainer{
    width: 100%;
    padding: 70px 30px 20px;
    background-color: rgb(241, 241, 241);
    margin-top: 100px; 
    position: relative;
    top: -70px;
  }
  
  .socialIcons{
    display: flex;
    justify-content: center;
  } 
  
  .socialIcons a {
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
  }
  
  .socialIcons a i{
    font-size: 2em;
    color: rgb(0, 0, 0);
    opacity: 0.9;
  }
  
  .socialIcons a:hover{
    background-color: white;
    transition: 0.5s;
  }
  
  .footerNav{
    margin: 30px 0;
  }
  
  .footerNav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
  }
  
  .footerNav ul li a{
    color: rgb(0, 0, 0);
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  
  .footerNav ul li a:hover{
    opacity: 1;
  }
  
  .footerBottom{
    background-color: rgb(241, 241, 241);
    padding: 20px;
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 20px;
  }
  
  .designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
  }
  
  @media (max-width: 700px){
    .footerNav ul{
        flex-direction: column;
    }
    .footerNav ul li{
        width: 100%;
        text-align: center;
        margin: 10px;
    }
  }