body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
	overflow-x:hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	background-color:black !important;
}
.landing-container {
    display: flex;
    width: 100%;
    height: 100%;
}
.landing-footer {
	z-index: 200;
}
.choice-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    transition: filter 0.5s ease-in-out;
    position: relative;
	flex-direction: column;
	width:100%;
	height:100vh;
	justify-content: space-evenly;
}
.choice-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.5s ease;
}
.choice-panel:hover::before {
    background-color: rgba(0, 0, 0, 0.1);
}
#jagd-choice {
    background-image: url('../images/jagd_bg.jpg');
}
#angel-choice {
    background-image: url('../images/angel_bg.jpg');
}
a.choice-content {
    position: relative;
    z-index: 2;
    color: white;
    text-decoration: none;
	width:100%;
}
a.choice-content h2 {
    font-size: clamp(1rem, -1.7273rem + 8.7273vw, 7rem);
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-weight: 500;
    color: #f8f8f8;
}
.choice-content .enter-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.choice-panel:hover .enter-button {
    background-color: white;
    color: black;
}
.landing-footer {
	position:absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

@media (max-width: 768px) {
	.choice-panel {
		height:50vh;
	}
    .landing-container {
        flex-direction: column;
    }
	.landing-footer {
		position: relative;
		z-index: 200;
	}
	.breakdance-menu-list{
		flex-direction:column;
		
	}
    a.choice-content h2 {
        font-size: clamp(1rem, 1rem + 7.4667vw, 4.5rem);
    }
}