:root {
    --main-color: #fbc3c5;
    --social-size: 36px;
}

html, body {
    height: 100%;
    width: 100%;
    background: #000;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    width: 100%;
}

h1 span {
    display: block;
    text-indent: -9999px;
    line-height: 0;
}

h1 img {
    display: block;
    margin: 0 auto;
    width: 70%;
    max-width: 400px;
    max-height: 50vh;
}

.social {
    margin-top: 50px;
    display: flex;
}
.social a {
    display: block;
    text-indent: -9999px;
    width: var(--social-size);
    height: var(--social-size);
    margin: 0 calc(var(--social-size) / 2);
    border-radius: 50%;
    background: var(--main-color) no-repeat center;
    background-size: contain;
    transition: background-color ease .5s;
}
.social a:focus, a:hover, a:active {
    background-color: #fff;
}
.social a.fb {
    background-image: url(../gfx/fb.svg);
}
.social a.ig {
    background-image: url(../gfx/ig.svg);
}
.social a.dm {
    background-image: url(../gfx/mail.svg);
    background-size: 75%;
}
