html,body {
    margin: 0;
}
  
html {
    height: 100%;
    overflow:hidden;
}
body {
    min-height: 100%;
    background: center top no-repeat fixed;
    background-image: linear-gradient(transparent 50%, rgba(24, 18, 74, 0.5)), url("/imgs/bg_s.jpg");
    color: #3A3B80;
    font-family: futura;
    letter-spacing: 3px;
    background-size: contain;
    position: absolute;
    left: 0; 
    right: 0;
    bottom: 0;
    top:0;
}
  
.container-fluid {
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    min-height: 230px;
    z-index: 2;
}
.links {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
    width: 70%;
    max-width: 600px;
    flex-wrap: wrap;
}


.link {
    position: relative;
    height: 51px;
    width: 51px;
    margin-right: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex: 1 1 25%;
    margin-bottom: 30px;
}

.link span {
    font-size: 8px;
    position: absolute;
    bottom: -18px;
    transition: font-size 0.2s, text-shadow 0.2s, bottom 0.2s;
    text-shadow: 0px 0px 15px #333;
}

.link.with-text {
    max-width: 91px;
}

@media(max-height:620px) {
    body {
        background: center 5% no-repeat fixed url('/imgs/TK_FONT_CLEAN.jpeg');
        background-size: contain;
    }
}

@media(max-width:480px) {
    .links {
        width: 90%;
    }
    .container-fluid {
        bottom: 0;
    }
    .link span {
        bottom: -11px;
    }
}

@media(min-width:480px) {
    .link span {
        font-size: 11px;
    }
}


@media(min-width:830px) {
    body {
        background-image: linear-gradient(to left, transparent 70%, rgba(24, 18, 74, 0.5)), url("/imgs/bg_xl.jpg");
    }
    .links {
        flex-direction: column;
        top: initial;
        width: 100%;
        height: 80%;
        align-items: center;
        flex-wrap: nowrap;
    }
    .container-fluid {
        position: absolute;
        height: 100%;
        width: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
        bottom: initial;
    }
    .link {
        margin-bottom: 35px;
        margin-right: 0;
    }
    .link:last-child {
        margin-bottom: 0px;
    }
    .link span {
        bottom: -16px;
    }
    .email {
        bottom: 10px !important;
        background: white;
        box-shadow: 0px 0px 30px 30px white;    
    }
    .container-gigs {
        bottom: 10% !important;
    }
}

.link img.smaller-icon {
    width: 80%;
}

.link img {
    height: 80%;
    width: 100%;
    object-fit: contain;
    -webkit-filter: drop-shadow(0 0 15px #333);
    filter: drop-shadow(0 0 15px #333);
    top: 0;
    transition: filter 0.2s, height 0.2s, margin-top 0.2s, margin-left 0.2s;
}

.link:hover img {
    -webkit-filter: drop-shadow(0 20px 30px #333);
    filter: drop-shadow(0 20px 30px #333);
    height: 90%;
}

.link:hover span {
    text-decoration: underline;
    z-index: 2;
    font-size: 12px;
    text-shadow: 0px 20px 30px #444;
    bottom: -20px;
}

.email {
    cursor: pointer;
    position: absolute;
    left: 50%;
    width: 300px;
    margin-left: -150px;
    bottom: 190px;
    text-align: center;
}
.email:hover {
    text-decoration: underline;
}
.email-container a {
    color: #3A3B80;
}

.container-gigs {
    position: absolute;
    left: 50%;
    margin-left: -184px;
    bottom: 35%;
    display: flex;
    flex-direction: column;
    background: white;
    box-shadow: 0px 0px 40px 50px white;
    max-width: 368px;
    text-align: center;
    height: 168px;
    font-size: 11px;
}
.container-gigs a {
    color: #3A3B80;
}

ul {
    list-style: none;
    padding-left: 0;
}​