.footer-box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0px;
    padding-top: 25px;
    padding-right: 25px;
    padding-left: 25px;

}

.footer-content {
    background-color: #0085fe;
    color: white;
    padding-left: 75px;
    padding-right: 75px;
    padding-top: 25px;

    text-align: center;
    border-radius: 25px 25px 0 0;
    width: 90%;
    max-width: 500px;
    height: 100px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright {
    color: #0085fe;
    background-color: #fff;
    width: 100%;
    border-radius: 100px;
    text-align: center;
    text-decoration: none;
    font-family: 'ray';
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
    padding-top: 5px;
    padding-bottom: 5px;
    animation: zoomIn 0.8s ease-out;
}
 @keyframes zoomIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
  }

.copyright:hover {
    background-color: #bfeeff;
    transform: scale(1.05);
    
}

.copyright-sign {
    color: #ffffff;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    padding-top: 10px;
    padding-bottom: 5px;
}

.copyright-sign a {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-box{
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 20px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-left: 75px;
        padding-right: 75px;
        margin: 0px;
        padding-bottom: 100px;
    }
    .footer-section{
        text-align: center;
    }
    .copyright {
        font-size: 16px;
        padding-bottom: 5px;
        padding-top: 5px;
    }
}
@media (max-width: 480px) {
    .footer-content {
        padding-left: 30px;
        padding-right: 30px;
        height: 140px;
    }
    .copyright {
        font-size: 14px;
        padding: 5px;

    }
}
@media (max-width: 320px) {
    .copyright {
        font-size: 13px; 
    }
}