```css
.footer{

margin-top:70px;

background:
linear-gradient(
180deg,
#111,
#080808
);

padding:35px 20px;

border-top:
1px solid rgba(255,0,0,.15);

width:100%;

box-sizing:border-box;
}

.footer-inner{

max-width:1200px;

margin:auto;

display:flex;

justify-content:center;

align-items:center;

flex-direction:column;

gap:18px;

text-align:center;
}

.staceywest-link{

display:flex;

align-items:center;

justify-content:center;

gap:22px;

text-decoration:none;

color:#fff;

font-weight:bold;

font-size:1.5rem;

transition:.25s;
}

.staceywest-link:hover{

opacity:.92;
}

.staceywest-logo{

width:140px;

height:auto;

display:block;

/* blend image */

mix-blend-mode:screen;

opacity:.97;

/* edge fade */

-webkit-mask-image:
radial-gradient(
ellipse at center,
black 62%,
transparent 100%
);

mask-image:
radial-gradient(
ellipse at center,
black 62%,
transparent 100%
);

/* smooth glow */

filter:
brightness(1.08)
contrast(1.08);

transition:.25s;
}

.copyright{

color:#888;

font-size:.95rem;

margin-top:10px;
}
```
