@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:wght@100..900&display=swap');

:root {
    --salmon: #f4a99a;
    --salmon-light: #fdf0ed;
    --salmon-mid: #f7c4ba;
    --salmon-dark: #c46f5e;
    --salmon-deep: #8b3d30;
    --dark: #1e1e1e;
    --dark-mid: #252525;
    --white: #ffffff;
    --white-dim: rgba(255, 255, 255, 0.55);
    --white-faint: rgba(255, 255, 255, 0.15);
    --accent: #f4a99a;
}

#footer {
    width: 100%;
    position: relative;
    background: var(--dark);
    bottom: 0;
}

.footer-btm {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.775rem;
    color: var(--white);
    padding: 10px;
    font-family: "Montserrat", sans-serif;
}

.footer-btm p span {
    color: var(--salmon-mid);
    font-weight: 500;
}