:root{
    --width-max: 600px;
}
body{
    margin: 0;
    color: white;
    height: 100vh;
}
#starry-sky{
    background: #111;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;   
}

#carusel {
    align-content: center;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    letter-spacing: -1px;
    //background: rgba(255,0,0,0.1);
}

#carusel > grid{
    --c-text-color : white;
    display: none;
    transition: 200ms all;
    transform: translateX(-50px);
    opacity: 0;
    font-size: calc(min(100vw, var(--width-max)) / 30);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: max-content;
    color: var(--c-text-color);
    text-transform: uppercase;
}

#carusel > grid b{
    font-size: 1.8em;
    text-transform: uppercase;
}
#carusel > grid span{
    opacity: 0.6;
    margin-top: 6px;
    font-weight: bold;
}
#carusel > .active{
    display: grid;
}
#carusel > .shown{
    opacity: 1;
    transform: translateX(0px);
}
#main{
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}
/* that's some magic from my essentials */

/* that is now unused

.jump {
	animation: jump 1.1s forwards;
    animation-timing-function: ease-out;
    -webkit-animation: jump 1.1s forwards;
    -webkit-animation-timing-function: ease-out;
}

@keyframes jump {
	0% { transform: scaleY(1.0); }

	5% { transform: scaleY(1.2) translateY(-30px); }
	15% { transform: scaleY(0.9) translateY(-60px); }
	25% { transform: scaleY(1.2) translateY(-30px); }
	30% { transform: scaleY(0.8); }

	35%{ transform: scaleY(1.1) translateY(-15px); }
	45% { transform: scaleY(0.95) translateY(-30px); }
	55%{ transform: scaleY(1.1) translateY(-15px); }
	60%{ transform: scaleY(0.9);}
	

	63%{ transform: scaleY(1.05) translateY(-10px); }
	69% { transform: scaleY(0.97) translateY(-20px); }
	75%{ transform: scaleY(1.05) translateY(-10px); }
	78%{ transform: scaleY(0.95); }

	81%{ transform: scaleY(1.03) translateY(-5px); }
	87% { transform: scaleY(0.98) translateY(-10px); }
	93%{ transform: scaleY(1.03) translateY(-5px); }
	96%{ transform: scaleY(0.97);}

	100% { transform: scaleY(1.0);}
}

*/