@font-face {
	font-family: 'Europa-Bold';
	src: url('https://appmiral-applications.s3.eu-west-1.amazonaws.com/tomorrowland2024/deeplink/default/Europa-Bold.ttf');    
}
@font-face {
	font-family: 'Europa-Regular';
	src: url('https://appmiral-applications.s3.eu-west-1.amazonaws.com/tomorrowland2024/deeplink/default/Europa-Regular.ttf');    
}
@font-face {
	font-family: 'Europa-Light';
	src: url('https://appmiral-applications.s3.eu-west-1.amazonaws.com/tomorrowland2024/deeplink/default/Europa-Light.ttf');    
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #414141;
    color: #fff;
    /*overflow: hidden; /* Prevent scrolling */
    margin: 0;
    padding: 0;
}

.background {
    position: fixed;
    top: -80px;
    right: 0;
    bottom: -80px;
    left: 0;
    z-index: 1;
    background-image: url('https://appmiral-applications.s3.eu-west-1.amazonaws.com/tomorrowland2024/deeplink/default/background.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    height: 100vh;
    max-width: 1000px;
    margin: auto;
    z-index: 2;
}
.left-section, .right-section {
    box-sizing: border-box;
    padding: 30px;
}
.left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
}
.right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}
.left-section h1 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Europa-Bold';
    margin-bottom: 0;
    line-height: 1.3;
}
.left-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Europa-Light';
    line-height: 1.3;
}
.download-buttons img {
    height: 44px;
    margin-right: 10px;
}
.download-button {
    background-color: white;
    color: #000;
    border: none;
    padding: 15px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 20px;
    max-width: 300px;
    font-family: 'Europa-Bold';
    text-transform: uppercase;
    height: 44px;
    letter-spacing: 1.2px;
    line-height: 0;
    border-radius: 22px;
}
.right-section img {
    max-width: 135%;
    height: auto;
}

@media (max-width: 768px) {
    .left-section, .right-section {
        max-width: 100%;
        flex-basis: 100%;
    }
    .container {
        flex-direction: column;
        align-items: left;
        text-align: left;
        height: auto; /* Allow the container to adjust its height */
    }
    .right-section {
        order: 2; /* Move image to bottom on mobile */
    }
    .download-buttons img {
        height: 40px;
        margin-right: 5px;
    }
}
