:root {
	--green: rgba(154, 205, 50, 1);
	--gray: #454242;
	--red: #4eb980;
	--bkg: #323232;
}

@import url('https://fonts.googleapis.com/css?family=PT+Mono&display=swap');

@font-face{
	font-family:'Bierahinia Lite';
	src:url(bierahinia-lite.ttf) format('truetype');
	font-style:normal;
	font-weight:400;
	font-display:swap
}

body {
	font-family: 'PT Mono', sans-serif, -apple-system;
}

.slide {
	background-color: var(--bkg);
	color: #fff;
}

.slide h2 {
	color: #fff;
}

#cover, #last {
	text-align: center;
}

#last {
	display: flex;
	align-items: center;
}

#cover {
	position: relative;
	background: url("https://gdb.rferl.org/BA397428-D7A2-4E86-91C3-25A0091ECA0E_w1023_r1_s.jpg") no-repeat center 0 / 150%;
}

#cover:after {
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: -1;
}

#cover h2,
#last h2 {
	color: var(--red);
	font-size: 120px;
	text-transform: uppercase;
}

#cover h3 {
	display: inline-block;
	position: relative;
}

#cover h3:after {
	content: "";
	display: block;
	width: calc(100% + 20px);
	height: 3px;
	position: absolute;
	top: 50%;
	left: -10px;
	right: -10px;
	background: var(--red)
}

#links ul > li > a {
	color: #fff;
	text-decoration: none;
	background-image: linear-gradient(
			to top,
			var(--red) 1px,
			transparent 1px
	);
}

.slide ul {
	list-style: none;
}

.slide ul > li::before {
	content: "— ";
	color: #fff;
}

.slide ol > li::before {
	color: #fff;
}

.slide pre code:not(:only-child)::before {
	color: #fff;
}

.content {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.socials {
	margin-left: 10%;
	text-align: center;
	font-size: 46px;
}

.userpic {
	border-radius: 50%;
	height: 250px;
	width: 250px;
}

.username {
	display: block;
}

.qr {
	position: absolute;
	bottom: 1%;
	right: 1%;
}

.slide-link {
	font-size: 70%;
	color: #fff !important;
}

.content__smile {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 240px;
}

.content__smile img {
	max-height: 50vh;
}

.title-slide {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: start;
}

.title-slide .answer {
	align-self: flex-end;
}

.title {
	position: relative;
	padding: 25px 15px;
	background-color: var(--gray);
	border-radius: 20px;
}

.title:before {
	content: "";
	position: absolute;
	z-index: 2;
	bottom: -2px;
	left: -7px;
	height: 19px;
	border-left: 20px solid var(--gray);
	border-bottom-right-radius: 16px 14px;
	-webkit-transform: translate(0, -2px);
	transform: translate(0, -2px);
	border-bottom-right-radius: 15px 0px\9;
	transform: translate(-1px, -2px)\9;
}

.title:after {
	content: "";
	position: absolute;
	z-index: 3;
	bottom: -2px;
	left: 4px;
	width: 26px;
	height: 20px;
	background: var(--bkg);
	border-bottom-right-radius: 10px;
	-webkit-transform: translate(-30px, -2px);
	transform: translate(-30px, -2px);
}

.answer {
	position: relative;
	text-align: right;
	padding: 25px 15px;
	background-color: #0e86fe;
	border-radius: 20px;
}

.answer:before {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: -2px;
	right: -8px;
	height: 19px;
	border-right: 20px solid #0e86fe;
	border-bottom-left-radius: 16px 14px;
	-webkit-transform: translate(0, -2px);
	transform: translate(0, -2px);
	border-bottom-left-radius: 15px 0px\9;
	transform: translate(-1px, -2px)\9;
}

.answer:after {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: -2px;
	right: -42px;
	width: 12px;
	height: 20px;
	background: var(--bkg);
	border-bottom-left-radius: 10px;
	-webkit-transform: translate(-30px, -2px);
	transform: translate(-30px, -2px)
}

.content-center {
	text-align: center;
}

.bro td {
	width: 50%;
	padding: 15px;
	text-align: center;
	border-collapse: collapse;
	border: 1px solid var(--gray);
}

.circle {
	position: relative;
	width: 60vw;
	height: 0;
	margin: 0 auto;
	padding-bottom: 45%;
}

.circle .arrow {
	position: absolute;
	width: 100px;
	height: 100px;
}

.circle .arrow:first-of-type {
	right: calc(50% - 100px);
	top: 20px;
	transform: rotate(70deg)
}

.circle .arrow:nth-of-type(2) {
	right: 70px;
	top: calc(50% + 30px);
	transform: rotate(140deg)
}

.circle .arrow:last-of-type {
	width: 200px;
	height: 200px;
	left: -40px;
	top: 23%;
	transform: rotate(270deg)
}

.circle .text {
	position: absolute;
}

.circle .text:first-of-type {
	top: 0;
	left: 0;
}

.circle .text:nth-of-type(2) {
	bottom: calc(50% - 10px);
	right: 0;
}

.circle .text:last-of-type {
	bottom: 0;
	left: 0;
}

.jumping-dots span {
	position: relative;
	bottom: 0px;
	-webkit-animation: jump 1500ms infinite;
	animation: jump 2s infinite;
}
.jumping-dots .dot-1{
	-webkit-animation-delay: 200ms;
	animation-delay: 200ms;
}
.jumping-dots .dot-2{
	-webkit-animation-delay: 400ms;
	animation-delay: 400ms;
}
.jumping-dots .dot-3{
	-webkit-animation-delay: 600ms;
	animation-delay: 600ms;
}

.note.side {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	display: flex;
	justify-content:center;
	writing-mode: vertical-rl;
}

@-webkit-keyframes jump {
	0%   {bottom: 0px;}
	20%  {bottom: 15px;}
	40%  {bottom: 0px;}
}

@keyframes jump {
	0%   {bottom: 0px;}
	20%  {bottom: 15px;}
	40%  {bottom: 0px;}
}