html{
    height: 100%;
}

body{

    width:100%;
    color: white;
    background: linear-gradient(45deg, rgb(238, 69, 69), #EE6F45);
    background-size: 400% 400%;
    
    -webkit-animation: AnimationName 7s ease infinite;
    -moz-animation: AnimationName 7s ease infinite;
    animation: AnimationName 7s ease infinite;

    font-family: 'Montserrat', sans-serif;
}

a#link-ublu{
    color:white;
    opacity: 0.7;
}

h2 + h2 {
    margin-top: 15px;
}

a#link-ublu:hover{
    color: white;
    opacity: 1;
}

#ublood {
    font-family: 'Satisfy', cursive;
    font-size: 4em;
    margin-bottom: 0;
}

#livetype{
    padding:15px;
}

#play-img{
    width: 100%;
}

.first-row{
    padding-top: 35px;
}

footer {
    background: linear-gradient(#e97a7a 0%, rgb(238, 69, 69) 90%, #EE6F45);
    height: 20%;
    position: absolute;
    bottom:0;
    width:100%;
}

.container {
    height: 100%;
    position: relative;
    z-index: 10;
}

#logo-img{
    width:100%;
    max-width: 8em;
}

#capt-img >img{
    height: 400px;
}

.header-wrapper{
    padding-bottom: 25px;
}

.store-logo {
    width: 30%;
    height: 100%;
    margin: 5%;
}

.appear{
    animation: appear 700ms ease-in-out 0s 1 backwards;
}

@media (max-width: 576px) {
    .store-logo{
        width: 45%;
    }

    #livetype{
        padding: 0;
    }

}

 @keyframes appear{
     0%{
        opacity: 0;
        transform: translateX(-15px)
     }
     100%{
        opacity: 1;
        transform: translateX(0px)
     }

 }



@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName { 
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}