@charset "utf-8";
/* CSS Document */

body {
	background-color: black;
	background-repeat: no-repeat;
	margin: auto;
	background-image: url(blue_drips.png);
	background-position: top center;
}

#center-square-for-the-win, #center-square-for-the-win-b {
	left: 50%;
	transform: translate(-50%, -50%); /* Centering */
	position: absolute;
	top: 50%;
	max-width: 918px; /* Use max-width for flexibility */
	height: auto; /* Maintain aspect ratio */
	background-size: cover; /* Ensure background covers the area */
}

#business-card {
	max-width: 454px;
	height: auto;
	margin: auto;
	margin-top: 200px;
}

#bluebar {  
	width: 100%;
	height: 160px; /* Initial fixed height */
    height: 81vh;
	background-image: url(blackbar.png);
	background-position: center center; /* Center the background */
	background-repeat: no-repeat;
	background-size: 100% auto; /* Scale the background width to 100% and let height be automatic */
	margin-top: 50px; /* Adjusted initial margin-top for better spacing */
	z-index: -1;
	transition: height 0.5s ease; /* Smooth transition for height adjustments */
}

/* Responsive adjustments */
@media (max-width: 768px) {
	#bluebar {
		height: 120px; /* Slightly reduce height for tablets */
		margin-top: 30px; /* Adjust margin-top */
	}
}

@media (max-width: 480px) {
	#bluebar {
		height: 80px; /* Further reduce height for mobile devices */
		margin-top: 20px; /* Adjust margin-top for small screens */
		background-size: 100% auto; /* Ensure background covers width */
	}
}


#contact-me {
	max-width: 300px;
	height: auto;
	margin: auto;
	margin-top: -150px;
	background: white;
	z-index: 999;
	position: relative;
}

#container {
	height: auto;	
}

