html {
    overflow-x: hidden;
    height: auto;
    min-height: 100vh;
}

body,
html,
.wrapper {
    width: 100%;
    height: 100%;
    margin: 0
}

.link{
    position: relative;
    color: #7289DA;
}
a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.link:after{
    content: '';
    position: absolute;
    width: 0; height: 2px;
    display: block;
    margin-top: -2px;
    right: 0;
    background: #7289DA;
    transition: width .2s ease;
    -webkit-transition: width .2s ease;
}

.link:hover:after{
    width: 100%;
    left: 0;
    background: #7289DA;
}


.text {
    font: 30px "Berlin Sans FB", serif;
}

#top{
    transform: translate(0,-50px);
    font-size: 33px;
}

#bottom {
    transform: translate(0,15px);
    font-size: 30px;
}


.wrapper {
    position: relative;
    background: #e7f0f7;
}
.progressbar {
    display: block;
    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 400px;
    height: 30px;
}
.progressbar::before,
.progressbar::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-image: linear-gradient(90deg, #e91e63 0%, #e91e63 20%, #03a9f4 20%, #03a9f4 40%, #8bc34a 40%, #8bc34a 60%, #ffeb3b 60%, #ffeb3b 80%, #ff5722 80%, #ff5722 100%);
    background-position: 0 0;
    background-repeat: repeat-x;
    -webkit-animation: movebar 5s linear infinite;
    animation: movebar 5s linear infinite;
}
.progressbar::before {
    box-shadow: 0 6px 10px 0 rgba(0,0,0,0.1);
}
.progressbar::after {
    z-index: 9;
    top: 6px;
    -webkit-filter: blur(16px);
    filter: blur(16px);
    opacity: 0.7;
}
.stylization {
    position: absolute;
    z-index: 999;
    height: 4px;
    width: 90%;
    left: 5%;
    top: 6px;
    opacity: 0.3;
}
.stylization::before,
.stylization::after {
    content: '';
    display: block;
    position: absolute;
    height: 4px;
    top: 0;
    border-radius: 2px;
}
.stylization::before {
    background: #fff;
    left: 0;
    right: 10px;
}
.stylization::after {
    width: 6px;
    background: #fff;
    right: 0;
}
@-webkit-keyframes movebar {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 400px 0;
    }
}
@keyframes movebar {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 400px 0;
    }
}
