:root {
	--bg-color: #1e1e1e;
	--bg-color-variation: #2e2e2e;
	--imgbg-color: #000000;
	--text-color: #ffffff;
	--snack-color: #363636;
	--titlebar-color: #575757;
	--select-border-color: #363636;
	--select-hover-color: #575757;
	--navmenu-color: #252525;
	--navicons-color: #ffffff;
	--link-color: #007bff;
	--link-visited-color: #8a2be2;
	--link-hover-color: #ff4500;
	--select-icon: url("data:image/svg+xml;charset=utf-8,<svg width='10' height='6' fill='none' xmlns='http:%2F%2Fwww.w3.org/2000/svg'><path d='M1 1l4 4 4-4' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	--linkcopy-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z" fill="white"></path></svg>');
	--bg-image: url("bg-dark.webp");
	--bg-pos: top left;
	--outline: unset;
	--font-weight: normal;
	--invert-filter: 0%;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	color: var(--text-color);
}

body.light {
	--bg-color: #d9d9d9;/*ffffff*/
	--bg-color-variation: #e9e9e9;
	--imgbg-color: #ffffff;
	--text-color: #000000;
	--snack-color: #ffffff;
	--titlebar-color: #757575;
	--select-border-color: #999999;
	--select-hover-color: #cccccc;/*dddddd*/
	--navmenu-color: #bbbbbb;/*cccccc*/
	--navicons-color: #363636;
	--link-color: #0000EE;
	--link-visited-color: #551A8B;
	--link-hover-color: #FF0000;
	--select-icon: url("data:image/svg+xml;charset=utf-8,<svg width='10' height='6' fill='none' xmlns='http:%2F%2Fwww.w3.org/2000/svg'><path d='M1 1l4 4 4-4' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	--linkcopy-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z" fill="black"></path></svg>');
	--bg-image: url("bg-light.webp");
	--bg-pos: top right;
	--outline: 1px solid #000000;
	--font-weight: bold;
	--invert-filter: 100%;
}

body.no-transition * {
	transition: none !important;
}

.fixed-background {
	background-color: var(--imgbg-color);
	background-image: var(--bg-image);
	background-size: cover;
	background-attachment: fixed;
	background-position: var(--bg-pos);
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: end;
	width: 100%;
	transition: all 0.2s;
}

.content {
	position: relative;
	background-color: var(--bg-color);
	padding: 20px;
	width: 100%;
	margin-top: 30vh;
	transition: 0.2s;
}

@media only screen and (min-width: 769px)
{
	.content {
		border-radius: 10px;
		margin-left: 5vh;
		margin-right: 5vh;
		margin-bottom: 10vh;
	}
}

.top-title {
	margin-top: 22px;
	margin-bottom: 22px;
	width: calc(100% - 460px);
	display: inline-block;
}

.top-content {
	display: block;
	float: right;
	height: 80px;
}

@media only screen and (max-width: 768px)
{
	h1:not(.top-title), h2 {
		text-align: center;
	}

	h1.top-title {
		width: calc(100% - 60px);
	}
}

.pp_container {
	border-radius: 10px;
	position: relative;
	background-color: var(--bg-color);
	top: -200px;
	left: -20px;
	width: 250px;
	height: 250px;
	display: block;
	margin-bottom: -200px;
	transition: 0.2s;
}

.pp {
	border-radius: 10px;
	position: relative;
	top: 25px;
	left: 25px;
	width: 200px;
	margin-bottom: -150px;
}

@media only screen and (max-width: 768px)
{
	.pp_container {
		top: -150px;
		width: 180px;
		height: 180px;
		margin-bottom: -150px;
	}

	.pp {
		top: 0px;
		left: 15px;
		width: 150px;
	}
}

.title-bar {
	width: 100%;
	height: 2px;
	background-color: var(--titlebar-color);
	transition: 0.2s;
}

.small-title-bar {
	width: 50%;
	height: 2px;
	background-color: var(--titlebar-color);
	transition: 0.2s;
}

@media only screen and (max-width: 768px)
{
	.small-title-bar {
		margin: 0 auto;
		margin-top: 20px;
	}
}

h1 {
	z-index: 1;
}

h3 {
	font-size: 23px;
}

li {
	margin-bottom: 10px;
	font-size: 20px;
}

p {
	font-size: 20px;
}

a {
	text-decoration: none;
	transition: 0.2s;
	color: var(--link-color);
}

a:visited {
	color: var(--link-visited-color);
}

a:hover {
	color: var(--link-hover-color);
	text-decoration: underline;
}

.scriptonly {
	visibility: hidden !important;
	position: fixed !important;
}

.gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.image-container {
	margin: 10px;
	cursor: pointer;
	text-align: center;
	justify-content: center;
	display: inline-block;
}

.image-container div {
	position: relative;
}

.image-container img,
.image-container video {
	max-width: 100%;
	border-radius: 5px;
	transition: 0.2s;
	outline: var(--outline);
}

@media only screen and (min-width: 769px)
{
	.image-container img,
	.image-container video {
		height: 225px;
		width: auto;
	}
}

@media only screen and (max-width: 768px)
{
	.image-container img,
	.image-container video {
		width: 80%;
		height: auto;
	}
}

.image-container img:not(.videoThumb):hover {
	transform: scale(1.03);
}

.playIcon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.7;
	transition: 0.2s;
}

@media only screen and (min-width: 769px)
{
	.playIcon:hover {
		transform: translate(-50%, -50%) scale(1.1);
	}
}

@media only screen and (max-width: 768px)
{
	.playIcon {
		transform: translate(-50%, -50%) scale(0.7);
	}

	.playIcon:hover {
		transform: translate(-50%, -50%) scale(0.75);
	}
}

.project-icon {
	margin-top: 20px;
	border-radius: 10px;
	height: 100px;
	width: auto;
	transition: 0.2s;
}

@media only screen and (max-width: 768px)
{
	.project {
		display: flex;
		flex-direction: column;
	}

	.project-icon {
		margin-left: auto;
		margin-right: auto;
		max-width: 80%;
		height: auto;
		max-height: 100px;
	}
}

.project-icon.theme-sensitive {
	filter: invert(var(--invert-filter));
}

.buddies-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

@media only screen and (max-width: 768px)
{
	.buddies-gallery {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
}

.buddiesPP {
	flex-basis: calc(100% / 8);
	text-align: center;
	overflow-wrap: anywhere;
}

.buddiesPP img {
	border-radius: 50%;
	transition: 0.2s;
	transform-style: preserve-3d;
	outline: var(--outline);
	width: 150px;
}

.buddiesPP img:hover:not(:active) {
	transform: scale(1.03);
}

.buddiesPP img:active {
	filter: brightness(50%);
}

@media only screen and (min-width: 769px)
{
	.buddiesPP {
		padding: 10px;
	}

	.buddiesPP p {
		margin-bottom: 0.5em;
	}
}

@media only screen and (max-width: 768px)
{
	.buddiesPP p {
		margin-bottom: 0.1em;
	}

	.buddiesPP img {
		width: 80px;
	}
}

.buddiesPP img.rotate {
	animation: rotateBuddy 1s ease-in-out forwards;
}
  
@keyframes rotateBuddy {
	0% {
		transform: rotateY(0deg);
	}
	32% {
		filter: brightness(1);
	}
	33% {
		filter: brightness(0.8);
	}
	66% {
		filter: brightness(0.8);
	}
	67% {
		filter: brightness(1);
	}
	100% {
		transform: rotateY(360deg);
	}
}

.alignedBlocksContainer {
	width: 100%;
	border-collapse: collapse;
}

.alignedBlock {
	vertical-align: top;
	text-align: left;
	padding: 10px;
	display: inline-block;
}

@media only screen and (min-width: 769px)
{
	.alignedBlocksContainer {
		display: flex;
		justify-content: center;
	}

	.alignedBlock {
		margin-left: auto;
		margin-right: auto;
	}

	.alignedBlock ul {
		max-width: 20vw;
	}
}

@media only screen and (max-width: 768px)
{
	.alignedBlock {
		display: block;
	}
}

.footer-container {
	bottom: 0;
	left: 0;
	width: calc(100%);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-container p {
	font-size: initial;
	text-align: right;
	margin: 0;
	margin-left: 20px;
}

.linkcopy {
	margin-top: 0;
	padding-top: 0.83em;
}

.linkcopy::after {
	position: absolute;
	content: var(--linkcopy-icon);
	width: 0em;
	height: 0em;
	opacity: 0%;
	transform: scale(0);
	display: inline-block;
	transition: 0.2s;
	cursor: pointer;
	vertical-align: -0.2em;
	margin-left: 0.2em;
}

.linkcopy:hover::after {
	position: inherit;
	opacity: 100%;
	transform: scale(1);
	width: 1em;
	height: 1em;
}

.linkcopy:active::after {
	position: inherit;
	transform: scale(1.5);
	width: 1em;
	height: 1em;
}

@media only screen and (min-width: 769px)
{
	.linkcopy::after {
		vertical-align: -0.2em;
	}
}

@media (scripting: none) {
	.linkcopy:hover::after {
		opacity: 0%;
	}
}

/*---------------IMAGE/VIDEO VIEWER---------------*/

#modal, #modal-article {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.close, .prev, .next {
	position: absolute;
	font-size: 30px;
	color: #FFFFFF;
	cursor: pointer;
	transition: 0.2s;
}

.close:hover, .prev:hover, .next:hover {
	transform: scale(1.1);
}

.close {
	top: 20px;
	right: 30px;
	
}

.close::before {
	content: "×";
}

.prev {
	left: 30px;
	top: 50%;
}

.prev::before {
	content: "❮";
}

.next {
	right: 30px;
	top: 50%;
}

.next::after {
	content: "❯";
}

#caption {
	margin-top: 20px;
	color: #FFFFFF;
	font-size: 2vh;
	text-align: center;
	transition: 0.2s;
}

.modal-image, .modal-video {
	width: 100%;
	height: 100%;
}

@media only screen and (min-width: 769px)
{
	#modal-neighbour {
		display: none;
	}
}

#modal-neighbour {
	position: absolute;
}

@media only screen and (max-width: 768px)
{
	#modal {
		background-color: black;
	}

	.close {
		transform: scale(2);
	}

	.close:hover {
		transform: scale(2.2);
	}

	.prev, .next {
		visibility: hidden;
	}
}

/*---------------NETWORKS AND LANGUAGE---------------*/

.navbuttons-container {
	display: block;
	float: right;
	transform: translate(0px, 20px);
	border-radius: 20px 0px 0px 20px;
	user-select: none;
}

.navbuttons-container a svg {
	transition: 0.2s;
}

.language-select {
	position: fixed;
}

select {
	width: 60px;
	height: 40px;
	border-radius: 10px;
	border: solid var(--select-border-color);
	background-color: var(--navmenu-color);
	font-size: 20px;
	text-indent: -1000px;
	appearance: none;
	background-image: var(--select-icon);
	background-repeat: no-repeat;
	background-position: right 0.5rem top 50%;
	background-size: 0.65rem auto;
	transition: 0.2s;
	cursor: pointer;
}

select:hover {
	background-color: var(--select-hover-color);
}

select:focus {
	outline: none;
}

option {
	color: var(--text-color);
	transition: 0.2s;
}

option:checked {
	background-color: var(--select-hover-color);
}

.language-select {
	transform: translate(-70px, 3px);
	--flagurl: url("https://flagicons.lipis.dev/flags/4x3/gb.svg");
}

.language-select::after {	
	background-image: var(--flagurl);
	content: "";
	position: absolute;
	width: 20px;
	height: 15px;
	left: 7px;
	top: 14px;
	border-radius: 2px;
	user-select: none;
	pointer-events: none;
	transition: 0.2s;
}

.language-select:hover::after {	
	transform: scale(1.1);
}

.lightmode, .github-logo, .discord-logo, .reddit-logo, .modrinth-logo, .curseforge-logo, .gitlab-logo, .mail-logo {
	position: relative;
	fill: var(--navicons-color);
	transition: 0.2s;
}

.navbuttons-container a svg:not(.reddit-logo) {
	padding: 10px;
}

.lightmode:hover:not(:active) {
	transform: scale(1.1);
}

.github-logo:hover:not(:active) {
	transform: scale(1.1);
}

.discord-logo {
	transform: translate(0px, 4px);
}

.discord-logo:hover:not(:active)  {
	transform: translate(0px, 4px) scale(1.1);
}

.reddit-logo {
	transform: translate(0px, -2px) scale(1.5);
	padding: 0px;
	margin: 10px;
}

.reddit-logo:hover:not(:active) {
	transform: translate(0px, -2px) scale(1.65);
}

.modrinth-logo:hover:not(:active) {
	transform: scale(1.1);
}

.curseforge-logo:hover:not(:active) {
	transform: scale(1.1);
}

.gitlab-logo:hover:not(:active) {
	transform: scale(1.1);
}

.mail-logo:hover:not(:active) {
	transform: scale(1.1);
}

.navbar-open, .navbar-close {
	visibility: hidden;
	position: fixed;
	float: right;
	fill: var(--text-color);
	transition: fill 0.2s;
	font-size: 10px;
}

@media only screen and (max-width: 768px)
{
	.navbuttons-container {
		height: 100%;
		width: 75px;
		position: fixed;
		z-index: 1;
		top: 40px;
		right: -180px;
		background-color: var(--navmenu-color);
		transform: translate(0px, -40px);
		overflow-x: hidden;
		transition: right 0.5s, all 0.2s;

		margin: 0;
		display: grid;
		place-items: center;
		grid-template-rows: 90px;
		grid-auto-rows: 70px;
	}

	.navbar-open, .navbar-close {
		visibility: visible;
		position: relative;
		transition: 0.2s;
		font-weight: bold;
	}

	.navbar-open {
		transform: translate(-20px, 45px) scale(4);
	}

	.navbar-open:hover:not(:active) {
		transform: translate(-20px, 45px) scale(4.5);
	}

	.navbar-close:hover:not(:active) {
		transform: scale(1.1);
	}

	.language-select {
		position: unset;
		transform: translate(0px, -11px);
	}
}

.navbar-open:active, .navbar-close:active, .lightmode:active, .github-logo:active, .discord-logo:active, .reddit-logo:active, .modrinth-logo:active, .curseforge-logo:active, .gitlab-logo:active {
	filter: brightness(50%);
}

.github-logo:hover {
	fill: #8957E5;
}

.discord-logo:hover {
	fill: #5865F2;
}

.reddit-logo .circle {
	fill: #FF5700;
	opacity: 0;
	transition: 0.2s;
}

.reddit-logo:hover .circle {
	opacity: 1;
}

.reddit-logo:hover .face {
	fill: #FFFFFF;
}

.modrinth-logo:hover {
	fill: #1BD96A;
}

.curseforge-logo:hover {
	fill: #F16436;
}

.gitlab-logo * {
	transition: 0.2s;
}

.gitlab-logo:hover .gitlab-1 {
	fill: #e24329;
}

.gitlab-logo:hover .gitlab-2 {
	fill: #fc6d26;
}

.gitlab-logo:hover .gitlab-3 {
	fill: #fca326;
}

.mail-logo:hover {
	fill: #EA4335;
}

use {
	user-select: none;
	pointer-events: none;
}

[desc]:not(.language-select)::after,
.language-select[desc]::before {
	content: attr(desc);
	white-space: nowrap;
	color: var(--text-color);
	font-size: 15px;
	font-weight: var(--font-weight);
	background-color: var(--snack-color);
	border-radius: 5px;
	padding: 5px;
	position: absolute;
	top: 90%;
	transform: translateX(-70%);
	opacity: 0%;
	transition: 0.2s;

	user-select: none;
	pointer-events: none;
}

.language-select[desc]::before {
	transform: translate(0%, 5px);
}

@media only screen and (max-width: 768px)
{
	[desc]:not(.language-select)::after,
	.language-select[desc]:has(> select:not(:focus))::before {
		top: unset;
		transform: translate(-100%, 50px);
		z-index: 10;
	}

	.language-select[desc]::before {
		transform: translate(-25%, 50px) !important;
	}
}

[desc]:not(.language-select):hover::after,
.language-select[desc]:has(> select:not(:focus)):hover::before {
	opacity: 100%;
}

/*---------------SNACKBAR---------------*/

#snackbar {
	visibility: hidden;
	min-width: 250px;
	background-color: var(--snack-color);
	color: var(--text-color);
	text-align: center;
	border-radius: 10px;
	padding: 10px;
	position: fixed;
	z-index: 1;
	left: 30px;
	bottom: 30px;
	font-size: 2vh;
	font-weight: var(--font-weight);
	justify-content: center;
	display: flex;
}

@media only screen and (max-width: 768px)
{
	#snackbar {
		width: 85%;
		left: 5%;
	}
}

#snackbar.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
	from {bottom: 0; opacity: 0;}
	to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
	from {bottom: 0; opacity: 0;}
	to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
	from {bottom: 30px; opacity: 1;}
	to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
	from {bottom: 30px; opacity: 1;}
	to {bottom: 0; opacity: 0;}
}

/*---------------NO JAVASCRIPT WARNING---------------*/

#no-js {
	min-width: 250px;
	background-color: var(--snack-color);
	color: var(--text-color);
	text-align: center;
	border-radius: 10px;
	padding: 10px;
	position: fixed;
	z-index: 1;
	left: 30px;
	bottom: 30px;
	font-size: 2vh;
	justify-content: center;
	display: flex;
	transition: 0.2s;

	-webkit-animation: fadeout 0.5s;
	-webkit-animation-delay: 5s;
	-webkit-animation-fill-mode: forwards;

	animation: fadeout 0.5s;
	animation-delay: 5s;
	animation-fill-mode: forwards;
}

@media only screen and (max-width: 768px)
{
	#no-js {
		width: 90%;
		left: 5%;
	}
}

#no-js::after {
	content: "JavaScript is disabled!\AThis means you can't change page language, theme,\A copy sections URLs or open images/videos.";
	white-space: pre;
}

@media only screen and (max-width: 768px)
{
	#no-js {
		-webkit-animation-delay: 7s;
		animation-delay: 7s;
	}

	#no-js::after {
		content: "JavaScript is disabled!\AThis means you can't change page language, theme,\A copy sections URLs, open the lateral menu or open images/videos.";
	}
}

/*---------------FLASHBANG---------------*/

#flashbang {
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	opacity: 0;

	user-select: none;
	pointer-events: none;
}

#flashbang.flashbang {
	opacity: 1;

	user-select: auto;
	pointer-events: auto;

	-webkit-animation: flashbang 3s;
	-webkit-animation-delay: 0.5s;
	-webkit-animation-fill-mode: forwards;

	animation: flashbang 3s;
	animation-delay: 0.5s;
	animation-fill-mode: forwards;
}

@-webkit-keyframes flashbang {
	from {opacity: 1;}
	to {opacity: 0; user-select: none; pointer-events: none;}
}

@keyframes flashbang {
	from {opacity: 1;}
	to {opacity: 0; user-select: none; pointer-events: none;}
}

/*---------------ARTICLES---------------*/

.article-sum {
	border-radius: 10px;
	background-color: var(--bg-color-variation);
	box-shadow: var(--select-border-color) 2px 2px;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 6px;
	margin-right: 6px;
	padding-left: 10px;
	padding-bottom: 5px;
	padding-right: 10px;
	width: fit-content;
	display: inline-block;
	transition: 0.2s;
}

.article-sum img {
	border-radius: 10px;
	width: 500px;
}

.article-sum i {
	margin-bottom: 10px;
}

.article-sum * {
	display: block;
}

@media only screen and (max-width: 768px)
{
	.article-sum {
		margin: 0 auto;
		margin-top: 15px;
		margin-bottom: 15px;
		padding-top: 1px;
		display: block;
	}

	.article-sum img {
		width: 100%;
	}
	
}

.article-sum:hover:not(:active) {
	transform: scale(1.03);
}

.article-sum:active {
	filter: brightness(50%);
}

.reaction {
	display: inline-block;
	border: 2px solid var(--titlebar-color);
	border-radius: 50vh;
	padding: 3px;
	padding-right: 6px;
	margin-right: 5px;
	margin-top: 5px;
}

.reaction svg {
	fill: var(--navicons-color);
	display: inline;
	margin-right: 3px;
	transform: translateY(3px);
	transition: 0.2s;
}

#article-content {
	width: 90%;
	height: 100%;

	border-radius: 10px;
	margin-left: 5vh;
	margin-right: 5vh;
	margin-bottom: 5vh;
	margin-top: 5vh;

	padding: 0;
}

@media only screen and (max-width: 768px)
{
	#article-content {
		width: 100%;
		height: 100%;
		
		border-radius: 0px;
		margin: 0px;
	}
}

#article-text {
	padding: 20px;
	margin-bottom: 50px;
	margin-top: 20px;
}

#article-text img {
	border-radius: 10px;
}

.close-article {
	position: absolute;
	font-size: 45px;
	color: var(--text-color);
	cursor: pointer;
	transition: 0.2s;
	top: 20px;
	right: 30px;
}

.close-article:hover {
	transform: scale(1.1);
}

.close-article::before {
	content: "×";
}

#comments {
	width: 100%;
	height: 0px;
	border: 0;
}

#copyArticle {
	position: absolute;
	content: var(--linkcopy-icon);
	width: 30px;
	fill: var(--text-color);
	cursor: pointer;
	transition: 0.2s;
	top: 30px;
	right: 100px;
}

#copyArticle:hover:not(:active) {
	transform: scale(1.1);
}

#copyArticle:active {
	filter: brightness(50%);
}

#articles-list:empty {
	height: 300px;
	width: 100%;
	text-align: center;
}

#articles-list:empty::after {
	position: relative;
	top: 50%;
	content: "Hmm... There's nothing here. Is JavaScript enabled?";
}

@media only screen and (max-width: 768px)
{
	#copyArticle {
		top: 20px;
		left: 20px;
	}

	.close-article {
		top: 10px;
		right: 25px;
	}

	#article-text img {
		width: 90%;
		margin: 0 auto;
		display: block;
		margin-top: 5px;
		margin-bottom: 5px;
	}
}
