body {
    margin: 0 auto; /* Centers the content horizontally */
    font-family: Arial, Helvetica, sans-serif;
    background-color: #282828;
    color: white;
    
    /* Center items inside */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers horizontally */

    background-image: url('auto-parts-white2.png');
    background-repeat: repeat-y;
    background-size: 100%;
    
    /* ✅ Ensures the image starts from the top */
    background-position: top center;

    /* ✅ Fixes the background image so it stays anchored at the top */
    background-attachment: fixed;

    /* ✅ Optional: Adjust blending */
    background-blend-mode: soft-light;
}



.info_x {
	position: relative;
    width:85%; /* Adjust as needed */
	text-align: center;
			display: flex;
			flex-direction: column;
    background-size: cover; /* Ensures the image covers the entire div */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
	z-index: 1001;
	overflow-y: auto; /* Enables scrolling */
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    height: auto; /* Ensure container has height */
	margin-top: 60px;
}


.info_x img {
    width: 60%;
    height: 60%;

	margin-bottom: 80px;
}




.footer-links {
    position: relative;
    bottom: 0;
    width: 82%;
    background-color: #282828;
    text-align: center;
    z-index: 1002;
    padding: 0px 0; /* Ensures padding inside the footer */
}

.footer-links p {
    margin: 5px 0 0; /* Ensures proper spacing between separator and text */
}

/* Silver-ish Separator */
.footer-links::before {
    content: "";
    display: block;
    width: 80%; /* Adjust width to look balanced */
    height: 2px;
    background: linear-gradient(to right, #aaa, #fff, #aaa); /* Metallic effect */
    margin: 0 auto 5px; /* Centers the separator and adds space below */
}




.content {
	margin-top: 80px;
	display: flex;
    flex-direction: column;
	text-align: center;
	justify-content: center;
	min-height: 200px;
	width: 75%;
    flex-wrap: wrap; /* Ensures children wrap properly */
    overflow: hidden; /* Prevents overflow issues */
}

@media (max-width: 880px) {
	.content {
		display: flex;
		flex-direction: column;
		text-align: center;

		width: 88%;
		flex-wrap: wrap; /* Ensures children wrap properly */
		overflow: hidden; /* Prevents overflow issues */
	}
}