*, body {
    margin: 0;
    padding: 0;
}

nav, section, header, footer {
    display: block;
}

body {
    background: url(img/bg21.png) center #181D21;
    background-size: cover;
    background-blend-mode: color-dodge;
    color: #fff;
    font-family: Arial, Tahoma sans-serif;
    /* position: relative; */
}

.wrapper {
    width: 1200px;
    height: 90vh;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    padding: 35px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer {
    text-align: center;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0 15px 0;
    color: #777;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.logoWr {
    margin-bottom: 25px;
}

.mgLink {
    background: #181D21;
    color: #999;
    text-decoration: none;
    width: 200px;
    display: inline-block;
    margin: 0 auto;
    /* border-radius: 5px; */
    padding: 15px;
    transition: all .3s ease;
    border: 1px solid #fff;
    animation: linkAnim 1.5s ease infinite;
}

@keyframes linkAnim {
    0% {
        box-shadow: 0 0 0 1px rgba(255,255,255,0.4);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(255,255,255,0.001);
    }
}

.mgLink:hover {
    opacity: 0.7;
}

.mgLinkTitle {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

span.mdi {
    font-size: 60px;
}

.mdi-send-circle {
    color: #279EDA;
    display: inline-block;
    position: relative;
    transform: rotate(-45deg);
    top: 4px;
}

.mdi-instagram {
    color: #CD3998;
    position: relative;
    top: 4px;
}

.fMedia {
    /* display: inline-block; */
    vertical-align: middle;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
}

.footer a:hover {
    opacity: 0.7;
}

.fMedia span.mdi {
    font-size: 31px;
}

.mgList {
    margin-bottom: 25px;
    width: 100%;
    background: rgb(24,29,33);
    padding: 10px;
    margin-top: 15px;
}

.mgList div {
    margin-bottom: 10px;
    background: rgba(24,29,33,0.9);
    padding: 4px;
}

span.mdi-star {
    font-size: 16px;
    color: #EE8B26;
}

span.mdi-checkbox-blank-circle {
    font-size: 12px;
}

.fMedia a:nth-child(2) img {
    position: relative;
    top: 10px;
}

@media screen and (max-width: 980px) {
    .wrapper {
        width: 100%;
    }

    .footer {
        position: relative;
        margin-top: 25px;
    }

    .mgLink {
        margin-bottom: 10px;
    }
}