*,
*::after,
*::before {
	box-sizing: border-box;
}


:root {
	font-size: 18px;
	--color-text: #fff;
	--color-bg: #000;
	--color-link: #61dca3;
	--color-link-hover: #fff;
}




@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
	cursor: pointer;
}

a:not(.frame__title-back) {
	white-space: nowrap;
	overflow: hidden;
	position: relative;
}

a:hover {
	color: var(--color-link-hover);
	outline: none;
}

/* Better focus styles from https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus {
	/* Provide a fallback style for browsers
	 that don't support :focus-visible */
	outline: none;
	background: lightgrey;
}

a:focus:not(:focus-visible) {
	/* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
	background: transparent;
}

a:focus-visible {
	/* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
	outline: 2px solid red;
	background: transparent;
}

.unbutton {
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	font: inherit;
	cursor: pointer;
}

.unbutton:focus {
	outline: none;
}

main {
	height: 100vh;
	display: flex;
	flex-direction: column;
}

.frame {
	color: var(--color-title);
	padding: 1rem 2rem;
	margin-bottom: 3rem;
	grid-gap: 2rem;
	align-items: start;
	text-transform: lowercase;
	font-size: 0.75rem;
}

.frame a:not(.frame__title-back)::before {
	content: '';
	height: 1px;
	width: 100%;
	background: currentColor;
	position: absolute;
	top: 90%;
	transition: transform 0.3s;
	transform-origin: 0% 50%;
}

.frame a:not(.frame__title-back):hover::before {
	transform: scaleX(0);
	transform-origin: 100% 50%;
}

.frame__title {
	grid-area: title;
	display: flex;
}

.frame__title-main {
	font-size: inherit;
	margin: 0;
	font-weight: inherit;
}

.frame__title-back {
	position: relative;
	display: flex;
	align-items: flex-end;
}

.frame__title-back span {
	display: none;
}

.frame__title-back svg {
	fill: currentColor;
}

.frame__prev {
	grid-area: prev;
	align-self: start;
}

.ascii {
	color: var(--color-link);
	opacity: 0.5;
	position: fixed;
	right: 0;
	top: -1rem;
	pointer-events: none;
}

dl {
	margin:100px 100px;
}

dt {
	font-weight: bold;
    font-family: Lora;
    font-size: 40px;
    color: #fff;
    margin:20px 0px 0px 0px;
}

dd {
	font-family: heebo;
    font-size: 25px;
    margin: 0;
    color: #fff;
    text-transform:uppercase;
}


.splitting .words .word {
	white-space: nowrap;
}


@media screen and (max-width: 800px) {
    
dl {
	margin:100px 10px 50px 10px;
}

dt {
	font-weight: bold;
    font-family: Lora;
    font-size: 40px;
    color: #fff;
    margin:20px 0px 0px 0px;
}

dd {
	font-family: heebo;
    font-size: 20px;
    margin: 0;
    color: #fff;
    text-transform:uppercase;
}
 
}