@mixin respond-to($breakpoint) {
    @media (max-width: $width) {
        @content;
    }
}