body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 3px;
    text-align: center;
    background: #121212;
    color: #fff;
	height: 100%;
	background-size: cover; /* Adjust as needed */
    background-attachment: fixed;
}

header {
    position: relative;
    height: 70px;
    background: #000;
    overflow: hidden;
	border-radius: 10px;
}

#particle-title {
    width: 100%;
    height: 100px;
    display: block;
	background: #121212;
}

.nav {
    margin: 10px;
}

.nav button {
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    background-color: #282828;
    color: #fff;
    border: 1px solid #444;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav button:hover {
    background-color: #444;
}

.box {
    margin: -5px auto;
    padding: 20px;
    width: 70vw;
	height: 50%;
    #border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
	transition: filter 0.5s ease;
	#overflow-y: scroll;
}

.loading {
    color: #0f0;
    font-size: 20px;
    text-align: center;
    display: none; 
}

.content-section {
    display: none; 
}

.box.shrinking {
	filter: opacity(0);
    transform: scale(0);
}
