#html_body {width:100%;height:100%;max-width: 100%;}

html,body {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    margin: auto;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

#body_stripes_container {
    display: flex;
    height:100%;
    width:100%;
    overflow:hidden;
    z-index:-1;
    transform: scale(3,3);
    align-items: center;
    justify-content: center;
}

#radial_stripes {
    background:url('sunrays.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    visibility: hidden;
    position:absolute;
    width:100vw;
    height:100vh;
    animation:rotate 10s infinite linear;
    animation-play-state: running;
}

#tina_container {
    position: absolute;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

#tina {
    width:250px;
    height:525px;
    margin:auto;
    background:url('tina/tina_twerk_1.gif');
    background-repeat: no-repeat;
    background-position: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility:    hidden;
    -ms-backface-visibility:     hidden;
    animation: twerk 0.6s infinite steps(1);
    animation-play-state: paused;
}

#under_construction_h1 {
    margin:auto;
    text-align: center;
}

#cover_container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    display: flex;
}

#cover_h1 {
    margin:auto;
    text-align: center;
    width: 100%;
    top: 80%;
    position: absolute;
    z-index: 0;
}

.werking {
    text-decoration: none;
    color: #18272F;
    font-weight: 700;
    position: relative;
}

.werking::before {
    content: '';
    background-color: #9ABEF3;
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 8px;
    z-index: -1;
    transition: all .2s ease-in-out;
}

.werking:hover::before {
    bottom: 0;
    height: 100%;
}

/* Animations */
@keyframes rotate {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

@keyframes twerk {
	0%   { background-image: url('tina/tina_twerk_1.gif'); } 
	12.5%  { background-image: url('tina/tina_twerk_2.gif'); }
	25%  { background-image: url('tina/tina_twerk_3.gif');}
	37.5%  { background-image: url('tina/tina_twerk_4.gif'); }
	50%  { background-image: url('tina/tina_twerk_5.gif'); }
	62.5%  { background-image: url('tina/tina_twerk_6.gif'); }
    75%  { background-image: url('tina/tina_twerk_7.gif'); }
    87.5% { background-image: url('tina/tina_twerk_8.gif'); }
    100% { background-image: url('tina/tina_twerk_1.gif'); }
}
