body {
	margin: 0;
	font-family: "Roboto", sans-serif;
	background: #000;
	color: #fff;
	overflow: hidden;
}

header {
	background: #000;
	position: absolute;
	top: 0;
	right: 10px;
	width: 100%;
	padding: 2em 0;
	z-index: 2;
}

.nav-list {
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin: 0;
}

.nav-list li {
	flex: 1;
	text-align: center;
}

.nav-list a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	display: block;
}

.nav-list li:first-child a {
	color: #000;
	visibility: hidden;
}

.logo {
	position: absolute;
	top: 0;
	left: 20px;
	width: 50px;
	height: 50px;
	padding-top: 1em;
	border-radius: 50%;
	overflow: hidden;
}

.logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

#background {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: -1;
}

.main.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 100vh;
	width: 100vw;
	margin-top: 10vh;
	position: relative;
	z-index: 1;
}

.section {
	display: none;
	margin-top: -10vh;
}

.section .text-sized {
	padding: 10px;
	width: 80vw;
	max-width: 600px;
}

.section.active {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	animation: slide-up 0.5s ease forwards;
}

@keyframes slide-up {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.section .scrollable-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 80vw;
	height: 70vh;
	overflow: auto;
	padding: 30vh 0;
}

.section .saveId {
	width: 80vw;
	padding: 10px;
}

.section .title,
.section .key {
	color: #00faff;
}
.section .key {
	background: #000;
}

p {
	word-break: break-word;
}

.section .container {
	border-radius: 8px;
	padding: 20px;
	max-height: 80vh;
}

.section .fanimg,
.section .productimg {
	object-fit: cover;
	margin-bottom: 10px;
}

.section .fanimg {
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.section .productimg {
	width: 250px;
	height: 250px;
	border: 1px solid #fff;
}

.section h2 {
	font-size: 1.2em;
	margin-bottom: 10px;
}

@media (min-width: 480px) {
	.section .container.post {
		max-width: 250px;
	}

	::-webkit-scrollbar {
		width: 10px;
		height: 12px;
	}
	::-webkit-scrollbar-track {
		background: #000;
		border-radius: 10px;
	}
	::-webkit-scrollbar-thumb {
		background: #888;
		border-radius: 10px;
	}
	::-webkit-scrollbar-thumb:hover {
		background: #555;
	}
}

.section * {
	color: #777;
	text-decoration: none;
	overflow-wrap: break-word;
}

.section a {
	color: #00faff;
	text-decoration: underline;
}

.nav-link {
	cursor: pointer;
	transition: transform 0.5s ease, opacity 0.5s ease;
}

.nav-link.hidden {
	transform: translateY(100%);
	opacity: 0;
}
.nav-link.visible {
	transform: translateY(0);
	opacity: 1;
}

.search-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}

#search-input {
	width: 60%;
	padding: 5px;
	border: 1px solid #777;
	border-radius: 4px 0 0 4px;
	outline: none;
	background: #000;
	color: #fff;
}

.button {
	border: 0;
	background: #000;
	color: #fff;
	cursor: pointer;
	font-weight: bold;
	font-size: large;
}

.loader {
	border: 8px solid rgba(0, 0, 0, 0.1);
	border-top: 8px solid #999;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	margin: 100px auto;
	animation: spin 0.5s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.loading {
	display: none;
	font: 16px monospace;
	white-space: nowrap;
}

.loading::after {
	content: ".";
	position: absolute;
	animation: dotFlashing 1.5s infinite linear;
}

@keyframes dotFlashing {
	0%,
	100% {
		content: ".";
	}
	25%,
	75% {
		content: "..";
	}
	50% {
		content: "...";
	}
}

.select {
	background: #000;
}
