* {
	margin: 0;
	padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
	z-index: 1;
}

.logo{
	height: auto;
	max-width:80%;
}

.title {
    height: auto;
    max-width: 40%;  /* Ensures the aspect ratio is maintained */
}

.logo {
	z-index: 1;
}

.title {
	z-index:1;
}


/* Fixes the Cover Image */
.bottom-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
	z-index:2;
	background-image: url('cover2.webp');
	background-size: contain;
    background-repeat: no-repeat;
	background-position: bottom center;
}




@media (max-width: 1500px) {
	.bottom-section {
		background-size: cover;
	}
}

