.footer{
    background: #333;
    padding: 30px;
    color: #fff;
    margin-top: 45px;
    width: 100%;
}
  
.footer-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-container p{
    font-size: 1rem;
    text-align: center;
}
  
.footer-container p a{
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
}
  
.footer-container p a:hover{
    color: #5a99d4;
    transition: color 0.6s ease;
}

@media screen and (max-width: 768px) {
    .footer{
      margin-top: 105px;
    }
}

@media screen and (max-width: 375px) {
    .footer{
      margin-top: 145px;
    }
}