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

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000000;
    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/fserious2024/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: 2rem;
    margin-bottom: 20px;
    font-family: 'Reglo-Bold';
    margin-bottom: 0;
    line-height: 1.3;
}
.left-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: 'Reglo-Bold';
}
.download-buttons img {
    height: 44px;
    margin-right: 10px;
}
.download-button {
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    padding: 15px;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 20px;
    max-width: 300px;
    font-family: 'Reglo-Bold';
    height: 50px;
    line-height: 0;
}
.right-section img {
    max-width: 100%;
    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;
    }
}
