#top {
	position: relative;
	font-family: Verdana, Helvetica, sans-serif;
	user-select: none;
}

#home-container {
	position: absolute;
	top: 0;	
	display: flex;
	flex-direction: column;
	overflow: hidden;
	width: 100%;
	height: 99dvh;
}

#home-header {
	display: flex;
	flex: 0 0 auto;
	justify-content: flex-end;
	width: 100%;
	height: 1vmin;
	min-height: 35px;
	margin-top: 1.2dvh;
	align-items: center;
	font-size: max(1.4vmin, 11px);
	color: #FFFFFF;
	background-color: rgba(0, 0, 0, 0.5);
	/*background-image: url('../images/overlay.png');*/
	padding: 6px 3vmin;
}

.home-socialIcons > *:not(:first-child),
.home-languageSelector > *:not(:first-child) {
	margin-left: 0.5vw;
}

.home-socialIcons a,
.home-languageSelector a {
	height: auto;
	width: auto;
	vertical-align: middle;
	text-decoration: none;
}

.home-socialIcons img,
.home-languageSelector img {
	height: 3vmin;
	width: auto;
	min-height: 25px;
	vertical-align: middle;
}

.home-socialIcons img:hover,
.home-languageSelector img:hover,
#home-selectedLanguageLink:hover #home-selectedLanguageIcon {
	filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
	transform: scale(1.05);
}

#home-logoContainer {
	position: relative;
	z-index: 999;
	height: 30dvh;
	min-height: 30%;
	max-width: 90%;
	left: 50%;
	transform: translate(-50%, 0);
	margin-top: 5dvh;
}

#home-logo-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#home-strip-container {
	position: relative;
	z-index: 999;
	min-height: 19%;
	max-width: 90%;
	left: 50%;
	transform: translate(-50%, 0);
	margin-top: 5dvh;
}

#home-strip-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#home-menu-items {
	position: relative;
	z-index: 999;
	display: flex;
	flex: 0 0 auto;
	justify-content: space-between;
	background: none;
	margin: 0 auto;
	padding: 1dvh 0.4dvw 1dvh 0.4dvw;	
}

.home-menu-item {
	position: relative;
	left: 0;
	font-size: max(4vmin, 20px);
	text-decoration: none;
	color: #FFFFFF;
	transition: color 0.3s;
	text-shadow:
		-0.1rem -0.1rem 0 black,
		0.1rem -0.1rem 0 black,
		-0.1rem  0.1rem 0 black,
		0.1rem  0.1rem 0 black;
}

.home-menu-item:hover {
	color: #FFFFFF; 
	text-shadow: 0 0 1rem #FFFFFF;
	transform: scale(1.05)
}

.home-menu-item:hover .home-menu-description {
	color: #FFFFFF;
	opacity: 1;
	visibility: visible;
	transform: scale(1.05)
}

.home-menu-description {
	position: absolute;
	top: 2.4em;
	left: 0;
	margin-top: 0;
	font-size: 1.5vmin;
	text-wrap: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

#home-visualizer-container {
	position: absolute;
	z-index: 0;

    width: 100%;
	height: 30%;
	bottom: max(1vmin, 35px);
}

#home-canvasContainer {
    display: flex;
	flex: 1 1 0;
    justify-content: space-between;
    align-items: end;
    width: 100%;
	height: 100%;
}

#home-leftCanvasContainer {
	width: 40%;
	height: 100%;
}

#home-rightCanvasContainer {
	width: 40%;
	height: 100%;
}

canvas {
	display: block;
	width: 100%;
	height: 100%;
}

#home-footer {
	display: flex;
	flex: 0 0 auto;
	justify-content: space-between;
	width: 100%;
	height: 1vmin;
	min-height: 35px;
	align-items: center;
	font-size: max(1.4vmin, 11px);
	color: #FFFFFF;
	background-color: rgba(0, 0, 0, 0.5);
	/*background-color: #282828; /*rgba(73, 73, 73, 1);*/
	/*background-image: url('../images/overlay.png');*/
	padding: 6px 3vmin;
}

#home-fullCopyright {display: inline}

@media (max-width: 430px) {
	#home-fullCopyright {letter-spacing: -1px}
}

#home-audio-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

#home-audioVolume {
    -webkit-appearance: none;
    appearance: none;
    width: 10dvmax;
    height: 4px;
    background: #666666;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

/* Thumb (pallino) */
#home-audioVolume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: transform 0.15s ease;
}

#home-audioVolume::-webkit-slider-thumb:hover {
	filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
	transform: scale(1.05);

}

#home-audioVolume::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #FFCC00;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease;
}

#home-audioVolume::-moz-range-thumb:hover {
    transform: scale(1.15);
}
