.copyright-container {
  background-color: var(--secondary);
  color: var(--white);
  padding-top: 12px;
  padding-bottom: 12px;
}

.copyright{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive styles */
@media screen and (max-width: 576px) {
    .copyright {
        flex-direction: column;
        gap: 1.618em;
        text-align: center;
    }
    
    .copyright img {
        max-width: 80px;
        margin: 0 auto;
    }
}