@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v22/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v22/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	font-size: 16px;
	--darkblue: #1650D2;
	--lightblue: #78D2F4;
}
/*darkblue: #1650d2;
 lightblue: #78d2f4;*/

* {
	box-sizing: border-box;
}

body {
	padding: 0;
	margin: 0;
	font-family: 'Playfair Display', serif;
	height: 100vh;
	color: #444;
}

:selection {
	color: var(--lightblue);
}

img {
    max-width: 100%;
}

.page-wrapper {
	width: 100%;
	height: 100%;
}

.flex-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

a:not(.list-item-anchor):not(.back-to-home) {
    background: -webkit-linear-gradient(90deg, var(--darkblue), var(--lightblue));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
    position: relative;
}

a:not(.list-item-anchor):not(.back-to-home):after {
    content: "";
    position: absolute;
    left: 0px;
    top: calc(100% - 1px);
    width: 0%;
    height: 1px;
    transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275) 400ms;
    background: -webkit-linear-gradient(90deg, var(--darkblue), var(--lightblue));
}

a:not(.list-item-anchor):not(.back-to-home):hover:after {
    width: 100%;
}

.title-wrapper {
	margin-bottom: 40px;
}

.plugin-text {
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

.page-title {
	font-size: 4rem;
	letter-spacing: -3px;
	position: relative;
	margin-top: 0px;
}

.construction {	
	background: -webkit-linear-gradient(90deg, var(--darkblue), var(--lightblue));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.page-sub-title {
	color: #888;
	filter: blur(1px);
}

.api-fetcher {
    padding: 10px 15px;
}

.api-fetcher .construction {
    margin-top: 0px;
}

.api-fetcher .page-title {
    font-size: 3rem;
}

.api-fetcher .title-wrapper  {
    margin-bottom: 1rem;
}

.api-fetcher .flex-wrapper {
    height: auto;
}

.instructions-title {
    margin-top: 2rem;
}

.plugin-instructions {
    text-align: left;
    padding-bottom: 4rem;
    max-width: 120ch;
    margin-left: auto;
    margin-right: auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serifr;
}

.plugin-instructions p,
.plugin-instructions li {
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

.plugin-instructions img {
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.plugin-instructions li {
    margin-bottom: 1rem;
}

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

@keyframes fallDown {
	0% {
		transform: rotate(0deg);
	}	
	74% {
		transform: rotate(0deg);
	}
	80% {
		transform: rotate(-160deg);
	}
	84% {
		transform: rotate(-140deg);
	}
	87% {
		transform: rotate(-155deg);
	}
	90% {
		transform: rotate(-145deg);
	}
	92% {
		transform: rotate(-153deg);
	}
	94% {
		transform: rotate(-151deg);
	}
	100% {
		transform: rotate(-151deg);
	}
}

.first-letter {
	animation-name: fallDown;
	animation-duration: 5s;
	animation-timing-function: ease;
  	animation-fill-mode: forwards;
	transform-origin: bottom right;
	color: #444;
	background: none;
	-webkit-background-clip: none;
	-webkit-text-fill-color: #444;
	display: inline-block;
}

.quick-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.list-item a {
	color: #444;
	text-decoration: none;
	border-radius: 20px;
	height: 50px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	background: #FAFAFA;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
    box-shadow: 0px 10px 15px rgba(0,0,0,0.05);
    transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275) 400ms;
    transition-delay: 50ms;
}

.list-item a:hover {
    transform: scale(1.05);
}

.list-item .avatar {
	height: 50px;
	width: 50px;
	border-radius: 50%;
	display: block;
	overflow: hidden;
	position: relative;
	background: #FFF;
}

.list-item .avatar img {
	object-fit: contain;
	object-position: center;
	display: block;
	width: 50px;
	height: 50px;
}

.list-item .list-item-title {
	line-height: 50px;
	margin-left: 15px;
	margin-right: 15px;
	font-weight: 400;
	display: block;
	text-align: left;
}

.back-to-home {
    position: absolute;
    width: 3rem;
    height: 3rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' focusable='false' viewBox='0 0 24 24' aria-hidden='true' title='fontSize small'%3E%3Cdefs%3E%3ClinearGradient id='gradient1' x1='50%25' y1='0%25' x2='50%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%2378d2f4'/%3E%3Cstop offset='100%25' stop-color='%231650d2' stop-opacity='1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23gradient1)' d='M17.51 3.87L15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275) 400ms;
}

.back-to-home:hover {
    transform: scale(1.15);
}

@media screen and (max-width: 767px) {
	.page-title {
		font-size: 3.5rem;
	}
	.construction {
		display: block;
		margin-top: 60px;
	}
}