
/* ******************************************************
/* CHANGE THIS FOR BASIC STYLING ************************
/* ******************************************************/

@font-face {
	font-family: 'FontName-One';
	src: url('https://s3.eu-west-1.amazonaws.com/appmiral-applications/ttfestival2025/styles/Thicker-Bold.ttf');    
}
@font-face {
	font-family: 'FontName-Two';
	src: url('https://s3.eu-west-1.amazonaws.com/appmiral-applications/ttfestival2025/styles/Thicker-Regular.ttf');    
}

body {
    font-family: Arial, sans-serif;
    background-color: #272526;
    color: #FFFFFF;
}

h1 {
    color: #FFFFFF;
    font-family: 'FontName-One';
    font-size: 2rem;
    margin-bottom: 0;
    line-height: 1.3;
}
p {
    color: #FFFFFF;
    font-family: 'FontName-Two';
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 21px;
}

.open-app-button {
    background-color: #EC671F;
    color: #272526;
    border-radius: 100px;
    font-family: 'FontName-One';
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-top: 20px;
    padding: 15px;
}



/* ******************************************************
/* UNCOMMENT / OVERWRITE FOR MORE ADVANCED STYLING ******
/* ******************************************************/

body {
    margin: 0;
    padding: 0;
    /* overflow: hidden; /* Prevent scrolling */
}

.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%;
}

.right-section img {
    max-width: 100%;
    height: auto;
}

.open-app-button {
    max-width: 300px;
    height: 50px;
    border: none;
    padding: 15px;
    line-height: 0;
    cursor: pointer;
}

@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;
    }
}
