body,
html {
    box-sizing: border-box;
    height: 100%;
    margin: 0;
}

*,
*:after,
*:before {
    box-sizing: inherit;
}

@keyframes bgchange {
    0% {
        background-image: url("bgafter.svg");
    }
    50% {
        background-image: url("bgbefore.svg");
    }
    100% {
        background-image: url("bgafter.svg");
    }
}

.bg {
    /* The image used */
    background-color: #e8e8e8;
    animation: bgchange 5s infinite;
    /* Full height */
    height: 100%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: repeat;
}

.circular {
    border-radius: 50%;
    box-shadow: 5px 5px 10px rgba(80, 78, 78, 0.767);
    padding: 7px;
    position: absolute;
    top: 30%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.svg--source {
    display: none;
}

.svg--icon {
    width: 100%;
    max-width: 3rem;
    height: 100%;
    max-height: 3rem;
    display: block;
    margin: 0 auto;
}

.wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.share {
    width: 3rem;
    height: 3rem;
    float: left;
    margin: 0.5rem 1rem 0.5rem 0;
    color: #524545e3;
    border: 0.125rem solid #f3f3f3;
    box-shadow: 0 0 8px 0 rgba(50, 50, 50, 0.15);
    border-radius: 30%;
    margin: 1rem;
}

.share:hover {
    transition: 250ms;
    box-shadow: 0 0 24px 0 currentColor;
    fill: currentColor;
}

.share:last-child {
    margin-right: 0;
}

.connect {
    margin-top: 3rem;
}

.github:hover,
.github:focus {
    color: #000000;
}

.stackoverflow:hover,
.stackoverflow:focus {
    color: #ef8236;
}

.linkedin:hover,
.linkedin:focus {
    color: #0e76a8;
}

.gmail:hover,
.gmail:focus {
    color: #d44638;
}