@import "variables"; .footer { @media print { display: none; } padding: 40px 0; flex-grow: 0; opacity: .5; &__inner { display: flex; align-items: center; justify-content: space-between; margin: 0; width: 760px; max-width: 100%; @media (max-width: $tablet-max-width) { flex-direction: column; } } a { color: inherit; } .copyright { width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; // so `--light-color-secondary` color exists no where else in the stylings // color: var(--light-color-secondary); // As a substitute, I'm going to use the alpha-70 version of accent. color: var(--accent-alpha-70); & > *:first-child:not(:only-child) { margin-right: 10px; @media (max-width: $tablet-max-width) { margin: 0; } } @media (max-width: $tablet-max-width) { // flex-direction: column; margin-top: 10px; } } }