/* body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
  } */
  body {
    height: 100%;
    margin: 0;
  }

  #footer {
    margin-top:20%;
    /* background: #333; */
    color: #050505;
    text-align: center;
    padding: 10px 0;
  }
#footer-links{
    display: grid;
    padding:20px;
    grid-template-columns: repeat(4,1fr);
    background-color: #f5f5f5;
    gap:20px;
    /* margin-left:100px; */
   
}
.footer-links1{
    display: flex;
    flex-direction: column;
    gap:20px;

}
.footer-links1 a{
    color: rgb(114, 110, 110);
    text-decoration: none;
    font-size: 20px;;
}
.footer-links1 a:hover{
    color:black;
    text-decoration: underline;
}