body {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	background-color: #f0f2f5;
	color: #333;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	height: auto;
	margin: 0;
	gap: 20px;
	padding-top: 80px;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-image: url("/picture/background.png");
	background-size: cover;
	background-position: center;
	filter: blur(8px);
	transform: scale(1.1);
}

.container {
	background-color: #fff;
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	text-align: center;
	max-width: 600px;
	width: 80%;
	margin: 20px auto;
}

h1 {
	color: #df001e;
	margin-bottom: 20px;
}

p {
	line-height: 1.6;
	font-size: 14px;
}

.status {
	display: inline-block;
	background-color: #ffe7e7;
	color: #df001e;
	padding: 5px 15px;
	border-radius: 20px;
	font-weight: bold;
	font-size: 12px;
	margin-top: 20px;
}

.profile-content {
    display: inline-block;
    text-align: left;
}

.profile-img {
    float: left;
    margin-right: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.description {
    display: table;
}

.container {
    text-align: center;
    padding: 20px;
}

.navbar {
    width: 100%;
    background-color: #360d13;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    color: black;
    text-decoration: none;
	-webkit-text-stroke: 3px white;
	paint-order: stroke;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #df001e;
}

.btn {
	display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #df001e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.5s;
}

.btn:hover {
	background: #63000d;;
}

#visualizer-area {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 200px;
	margin: 20px 0;
	padding: 10px;
	background: #f9f9f9;
	border-radius: 4px;
	border: 1px inset #eee;
}

.bar {
	flex: 1;
	margin: 0 1px;
	background-color: #3498db;
	transition: height 0.2s ease, background-color 0.2s;
}

.comparing {
	background-color: #df001e !important;
}

.sorted {
	background-color: #2ecc71 !important;
}

.visualizer-controls button {
	cursor: pointer;
	border: none;
	font-family: inherit;
}
