@charset "UTF-8";
@keyframes mumbler-header-blur {
    from {
        opacity: 0.8;
        visibility: visible;
        filter: blur(0.1ex);
        text-shadow: 0 0 5px rgb(155, 19, 19), 0 0 10px rgb(167, 85, 85), 0 0 15px rgb(211, 140, 184), 0 0 30px rgb(241, 213, 230),0 0 50px rgb(240, 231, 232);
    }
    to {
        opacity: 1;
        visibility: visible;
        filter: blur(0.01ex);
        text-shadow: 0 0 2px rgb(155, 19, 19), 0 0 4px rgb(167, 85, 85), 0 0 8px rgb(211, 140, 184), 0 0 16px rgb(241, 213, 230),0 0 32px rgb(240, 231, 232);
    }
}

@-webkit-keyframes mumbler-header-blur {
    from {
    opacity: 0.8;
    visibility: visible;
    filter: blur(0.1ex);
    text-shadow: 0 0 5px rgb(155, 19, 19), 0 0 10px rgb(167, 85, 85), 0 0 15px rgb(211, 140, 184), 0 0 30px rgb(241, 213, 230),0 0 50px rgb(240, 231, 232);    
    }
    to {
    opacity: 1;
    visibility: visible;
    filter: blur(0.01ex);
    text-shadow: 0 0 2px rgb(155, 19, 19), 0 0 4px rgb(167, 85, 85), 0 0 8px rgb(211, 140, 184), 0 0 16px rgb(241, 213, 230),0 0 32px rgb(240, 231, 232);
    }
}

@keyframes mumbler-item-blur {
    from {
        opacity: 0.8;
        visibility: visible;
        filter: blur(2ex);
        text-shadow: 0 0 5px rgb(155, 19, 19), 0 0 10px rgb(167, 85, 85), 0 0 15px rgb(211, 140, 184), 0 0 30px rgb(241, 213, 230),0 0 50px rgb(240, 231, 232);
    }
    to {
        opacity: 1;
        visibility: visible;
        filter: blur(0ex);
        text-shadow: 0 0 3px rgb(155, 19, 19), 0 0 6px rgb(167, 85, 85), 0 0 12px rgb(211, 140, 184), 0 0 16px rgb(241, 213, 230),0 0 32px rgb(240, 231, 232);
    }
}

@-webkit-keyframes mumbler-item-blur {
    from {
    opacity: 0.8;
    visibility: visible;
    filter: blur(2ex);
    text-shadow: 0 0 5px rgb(155, 19, 19), 0 0 10px rgb(167, 85, 85), 0 0 15px rgb(211, 140, 184), 0 0 30px rgb(241, 213, 230),0 0 50px rgb(240, 231, 232);

    }
    to {
    opacity: 1;
    visibility: visible;
    filter: blur(0ex);
    text-shadow: 0 0 3px rgb(155, 19, 19), 0 0 6px rgb(167, 85, 85), 0 0 12px rgb(211, 140, 184), 0 0 16px rgb(241, 213, 230),0 0 32px rgb(240, 231, 232);

    }
}


.mumbler-header {
    background-color:black;
}

.mumbler-title {
    color: rgb(218, 165, 32);
    animation: mumbler-header-blur 3s infinite alternate;
    -webkit-animation: mumbler-header-blur 3s infinte alternate;
}

.mumbler-link {
    color: rgb(218, 165, 32);
    text-decoration: none;
}

.mumbler-link:hover {
    color: rgb(218, 165, 32);
    text-decoration: none;
}

.mumbler-band-camp-release {
    width: auto;
    max-width: 700px;
    height: auto;
    
}

.mumbler-band-camp-frame {
    border-radius: 4px;
    border-width: 2px;
    border-style: solid;
    min-height: 500px;
    width:100%;
    border-color: rgb(218, 165, 32, .5);
}

.mumbler-item {
    display: inline-block;
    animation: mumbler-item-blur 1s 1;
    -webkit-animation: mumbler-item-blur 1s 1;
    padding: 5px;
}

.mumbler-item-frame {
    border-radius: 4px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(218, 165, 32, .5);
}

.mumbler-main {
    margin-top: 40px;
    
}

