* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-image: linear-gradient(to left bottom, #0091fe, #3da4ff, #62b6ff, #84c8ff, #a6d9ff);

    display: grid;
    grid-template-rows: max-content 1fr max-content;

    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    /* line-height: 1.6; */
    color: #333;
    background-color: #f4f4f4;
}

.logoContainer {
    display: grid;
    grid-gap: 50px;
}

.googlePlayContainer {
    display: grid;
    grid-gap: 10px;

    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
}

section {
    padding: 0 100px;

    display: grid;
    grid-template-columns: max-content minmax(300px, 900px);

    align-items: center;
    justify-content: center;
}

.googlePlayImg {
    width: 200px;
}

.appLogoImg {
    width: 500px;
}

.screenshot {
    width: 100%;
}

footer {
    background: #00000014;
    text-align: center;
    padding: 20px 0;
}

/* --- */

@media (max-width: 1200px) {
    .appLogoImg {
        width: 300px;
    }
}

@media (max-width: 900px) {
    section {
        grid-template-columns: auto;
        grid-gap: 50px;
        place-content: start;
        padding: 20px;
    }
}