body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 20px;
}

.main-logo img {
    width: 100%;
    max-width: 600px;
    height: auto; /* Ensures the logo scales properly */
}

.tagline {
    margin-top: 10px;
    font-size: 3em; /* Increase font size */
    font-family: 'Shadows Into Light', cursive; /* Apply handwritten font */
}

.logos {
    margin-top: 95px;
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 750px;
}

.logo-container {
    position: relative;
    width: 150px;
    height: 150px;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

.logo img,
.logo .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.logo img {
    display: block;
}

.logo .back {
    background-color: #111111;
    display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 1em;
	transform: rotateY(180deg); /* Back face rotation */
	padding: 5px; /* Add 5 pixels of padding */
	text-align: center;
	width: 100%; /* Ensure full width */
}
.brand-name {
    color: red;
    font-weight: bold;
	margin-bottom: 5px; /* Add spacing between lines */
}

.brand-description {
    color: white;
    font-weight: bold;
	margin-bottom: 5px; /* Add spacing between lines */
}

.brand-tagline {
    color: #4a90e2;
    font-weight: bold;
	margin-bottom: 5px; /* Add spacing between lines */
}
.brand-link {
    color: white;
    font-weight: bold;
	margin-bottom: 5px; /* Add spacing between lines */
}

/* Footer positioned at the bottom */
.copyright {
    width: 100%;
	text-align: center;
	font-size: 0.8em;
	padding: 10px 0;
	background-color: black;
	margin-top: auto; /* This pushes the footer to the bottom */
}

@media (max-width: 600px) {
    .logos {
        flex-direction: column;
        align-items: center;
    }

    .logo-container {
        margin-bottom: 20px;
    }

    .main-logo img {
        max-width: 90%; /* Reduce the size of the logo on smaller screens */
    }

    .tagline {
        font-size: 2em; /* Adjust tagline size for mobile */
    }
}
a {
    color: white;
    text-decoration: none; /* Optional: Removes underline */
}

a:visited {
    color: white; /* Ensures the link stays white after it's clicked */
}

a:active {
    color: white; /* Keeps the link white when active */
}

a:hover {
    color: white; /* Optional: Keeps the link white on hover */
}