div{
    align-self: center;
    width:100%;
    display: flex;
    background-color: #111;
}

h1{
    width: 100%;
    text-align: center;
    letter-spacing: 102%;
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;
    animation-name: widenh1 !important;
    animation-timing-function: ease-in-out;
    animation-duration: 0.8s !important;
}
.uk{
    background: linear-gradient(to right,#ff6565, #602020);
    text-shadow: 0 0 1em#ff6565 ;
    animation-name: ukglow;
    animation-timing-function: ease-out;
    animation-duration: 1.5s;
}
.nw{
    background:
    linear-gradient(to right,#fff, #111);
    text-shadow: 0 0 1em#fff ;
    animation-name: nwglow;
    animation-timing-function: ease-out;
    animation-duration: 1.5s;
}
a{
    text-decoration: none;
    color: #fff !important;
    font-size: 1.5em;
    text-align: center !important
}
a:hover{
    text-shadow: 0 0 0.35em #ddd;
    animation-name: glow;
    animation-duration: 0.2s;
    animation-timing-function: ease-out;
}

body{
    background-color: #222;
    color: #fff;
}
div:not(.vid){
    height: 10em;
    overflow-x: scroll;
    overflow-y: hidden;
    box-shadow: #000000 0 0 15px;
}
.vid{
    height: 100%;
    min-width: 5em;
    display: flex;
  justify-content: center;
  align-items: center;
    padding: 1em;
    border-left: 1px solid #222;
    border-right: 1px solid #222;
    
}
.vid:hover{
    animation-name: lightup;
    animation-timing-function: ease-in-out;
    animation-duration: 0.15s;
    border-left: 1px solid #666;
    border-right: 1px solid #666;
    box-shadow: inset #666 0 0 20px;
}
@keyframes glow{
    0%{text-shadow: 0 0 0em #ddd;}
    100%{text-shadow: 0 0 0.35em #ddd;}
}
@keyframes lightup{
    0%{
        border-left: 1px solid #222;
        border-right: 1px solid #222;
        box-shadow: inset #222 0 0 20px;
    }
    100%{
        box-shadow: inset #666 0 0 20px;
        border-left: 1px solid #666;
        border-right: 1px solid #666;
    }
}
@keyframes ukglow {
    0%{
    text-shadow: 0 0 1em #000000 ;
    }
    100%{
    text-shadow: 0 0 1em #ff6565 ;
    }
}
@keyframes nwglow {
    0%{
    text-shadow: 0 0 1em #000000 ;
    }
    100%{
    text-shadow: 0 0 1em #fff ;
    }
}
@keyframes widenh1 {
    0%{
        letter-spacing: 50%;
    }
    100%{
        letter-spacing: 102%;
    }
}