body, body * {
    font-family: 'Raleway';
    scroll-behavior: smooth;
}

#page-scroll {
    position: relative;
}

.figure-caption {
    text-transform: uppercase;
    font-display: block;
    font-weight: bold;
    font-size: 1.25rem;
    color: rgba(28, 28, 28, 0.8);
    padding-bottom: 2rem
}

.bg-black {
    background-color: black;
}

img {
    margin-bottom: 3rem;
    background-size: cover;
    background-position: center;
}

.img-fill {
    width: 100%;
    height: auto
}

.w-100-px {
    width: 100px;
}

.w-200-px {
    width: 200px;
}
svg {
    border-radius: 50%;
}

.social-icon {
    width: 75px;
    height: 75px;
    fill: #999;
    transition: 0.25s;
    margin: 0.5rem;
}

.social-mask {
    fill: #0000;
    border-radius: 50%;
    transition: 0.25s;
}

svg:hover .social-icon {
    fill: white;    
}

svg:hover .social-mask {
    fill: #000;
}

.social-icon.inverse-icon {
    fill: #fff;
}

svg:hover .social-icon.inverse-icon {
    fill: #212529;
}

svg:hover .social-mask.inverse-icon {
    fill: #fff;
}