@import url('https://fonts.googleapis.com/css?family=Comfortaa:300,400,500,600,700&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
}

h1, p, h2, h3, h4, ul, li, div {
    margin: 0;
    padding: 0;
}

body {
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    font-family: 'Comfortaa', cursive;
}

.loading-page {
    background: #0d0d0d;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-page .counter {
    text-align: center;
}

.loading-page .counter p {
    font-size: 40px;
    font-weight: 100;
    color: #f60d54;
}

.loading-page .counter h1 {
    color: white;
    font-size: 60px;
    margin-top: -10px;
}

.loading-page .counter hr {
    background: #f60d54;
    border: none;
    height: 1px;
}

.loading-page .counter {
    position: relative;
    width: 200px;
}

.loading-page .counter h1.abs {
    position: absolute;
    top: 0;
    width: 100%;
}

.loading-page .counter .color {
    width: 0px;
    overflow: hidden;
    color: #f60d54;
}

/* Next Button */

* {
    box-sizing: border-box;
}

.icon {
    display: block;
    width: 1.5em;
    height: 1.5em;
    margin: 0 auto;
    fill: currentColor;
}

.icon--arrow-right {
    transform: scale3d(-1, -1, 1);
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5em;
}

.next {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    bottom: 0;
    right: 0;
}

.next-demo {
    position: relative;
    margin: 1.5em 2em;
    font-weight: bold;
    color: #fff !important;
    text-decoration: none;
}

.next-demo a:hover, .next-demo a:focus {
    color: #42AB9E !important;
}

.hidden {
    width: 0;
    height: 0;
}