/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Global */
body {
	background-color: rgb(0, 0, 0);
	font-family: Raleway, serif;
	color: white;
}

/* Footer */
footer p {
	margin: 5px;
	opacity: 75%;
	font-size: 20px;
}

/* Title */
.header-top {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
}

.back-button {
	position: absolute;
	top: 10px;
	left: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 12px;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
}

.back-button:hover {
	transform: scale(1.05);
}

@media (max-width: 400px) {
	.list-header h1 {
		font-size: 1.5rem;
		margin-left: 40px;
	}
}

@media (max-width: 768px) {
	.back-button {
		width: 35px;
		height: 35px;
		top: 2px;
		left: 2px;
	}
}
