@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #1A76BD;
    display: flex;
    height: 100vh;
    width: 100vw;
    color: #FFFFFF;
    overflow-x: hidden;
}

.logo {
    width: 347px;
    height: 88px;
}

.container {
    width: 100vw;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 71px;
    margin-left: 71px;
}

.left-section {
    width: 55%;
}

.right-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%;
}

.ondc-logo {
    width: 300px;
    height: 60px;
    margin-left: 12px;
}

.heading {
    font-size: 70px;
    font-weight: 700;
    margin-top: 54px;
    margin-left: 12px;
}

.description {
    font-size: 30px;
    font-weight: 400;
    margin-top: 10px;
    margin-left: 12px;
}

.store-links {
    display: flex;
    margin-top: 53px;
    gap: 62px;
    margin-left: 12px;
}

.store {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.store-icon {
    height: 72px;
    width: 224px;
}

.qr-code {
    margin-top: 12px;
    width: 238px;
    height: 236px;
}

.app-preview {
    width: 1000px;
    height: 850px;
    transform: rotate(35deg);
    margin-right: -30%;
}


@media (max-width: 1080px) {
    .logo {
        width: 399px;
        height: 102px;
    }
    .container {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 0px;
        padding: 12px;
        margin-top: 141px;
    }

    .heading {
        margin-left: 0px;
    }

    .left-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .description {
        text-align: center;
        margin-left: 0px;
    }

    .store-links {
        gap: 32px;
        margin-left: 0px;
    }

    .right-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .app-preview {
        transform: rotate(0deg);
        margin-right: 0px;
        height: 1100px;
    }
    .ondc-logo {
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .container {
        margin-top: 30px;
    }
    .logo {
        width: 148px;
        height: 37px;
    }

    .heading {
        font-size: 31px;
    }

    .description {
        font-size: 16px;
    }

    .store-icon {
        height: 37px;
        width: 116px;
    }
    .qr-code {
        width: 116px;
        height: 113px;
    }
    .ondc-logo {
        margin-top: 20px;
        width: 140px;
        height: 28px;
    }
    .app-preview {
        height: 600px;
    }
    
}