body {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-flow: column nowrap;
    place-items: center;
    place-content: center;
    text-align: center;
    background: url(bg.jpg);
    background-position: center;
    background-size: cover;
    height: calc(var(--vh, 1vh)*100);
    margin: 0;
    padding: 0;
    overflow: hidden;
}
body:before {
    content: " ";
    position: absolute;
    background: #000;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
    opacity: .4;
}
.profile {
    margin-bottom: 50px;
    z-index: 5;
}
.link {
    display: flex;
    flex-flow: column;
    min-width: 350px;
}
.link svg {
    width: 190px;
    height: 67px;
}
.link a {
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid #000;
    border-radius: 5px;
    transition: all .3s;
    margin: 0.5rem 0;
    z-index: 2;
    backdrop-filter: blur(4px);
    box-shadow: 0px 2px 0px 0px #000000;
    font-size: 15px;
    font-weight: 600;
}
.link a:hover {
    transition: all .3s;
}

.link a i {
    margin-right: 5px;
}

.ws:hover, .map:hover {
    background: #000;
    color: #fff;
}

.ig:hover {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}

.wp:hover {
    background: linear-gradient(45deg, #E5FFCC, #1EBEA5, #00E676, #D0E9EA);
}
.tk:hover {
    background: linear-gradient(115deg, #000000 , #f7004d);
}
.tg:hover {
    background: linear-gradient(120deg, #0088cc, #FFFFFF);
}

@media screen and (max-width: 768px)
{
.link {
    width: 80%;
}
}