* {
    overflow: hidden;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: none;
}

html, body {
    width: 100%;
    height: 100%;
}

body, .bg-blur {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('img/bg-smaller.jpg');
}

.bg-blur {
    position: static;
    width: 100vw;
    height: 100vh;
    filter: blur(6px);
    -webkit-filter: blur(6px);
}

.band {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.85);
}

.name {
    color: white;
    margin-top: 7px;
    font-size: 75pt;
    font-family: 'Staatliches', sans-serif;
}

.website-list {
    font-size: 0;
    margin-bottom: 20px;
}

.website-list li {
    display: inline-block;
}

.website-list li a {
    width: 80px;
    height: 80px;
    display: inline-block;
}

.website-list li a img {
    transition: all 0.1s;
    margin-top: 8px;
    width: 64px;
}

.website-list li a:hover img {
    margin-top: 0;
    width: 80px;
}

.footer {
    position: absolute;
    bottom: 0;
    padding: 10px;
    width: 100%;
    background-color: #444444;
    text-align: right;
    color: #EEEEEE;
}

.footer p {
    font-size: 14px;
}

.footer p a {
    color: #6495ED;
    text-decoration: none;
}

.footer p a:hover {
    text-decoration: underline;
}

.footer p a:active {
    color: #AA8888;
}

@media (max-width: 600px) and (min-width: 460px) {
    .website-list li a {
        width: 64px !important;
        height: 64px !important;
    }
    
    .website-list li a img {
        width: 48px !important;
    }
    
    .website-list li a:hover img {
        width: 64px !important;
    }
}

@media (max-width: 460px) {
    .website-list li a {
        width: 42px !important;
        height: 42px !important;
    }
    
    .website-list li a img {
        margin-top: 3px !important;
        width: 36px !important;
    }
    
    .website-list li a:hover img {
        width: 42px !important;
    }
    
    .name {
        font-size: 50pt !important;
    }
}