.copyright{
    background-color:#020D27;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.copyright-main-container{
    padding: 30px 10px;
    width: 100%;
    max-width: 1124px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.copyright-text,
.terms{
    color: white;
}
.terms-policies{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
}

@media screen and (max-width: 600px) {
    .copyright-main-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .copyright-text,
    .terms{
        font-size: 14px;
    }
    .terms-policies{
        width: 90vw;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}