@import url(_res/style.css);



.page {
    display: flex;
    align-items: center;
    flex-direction: row;
    
    justify-content: space-around;

    background-image: url(products/android/apps/keyboard/_res/drawable/grass_light.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.page a:hover {
    background-color: var(--grass_accent_ripple);
}
.page h1 {
    color: var(--grass_accent_foreground);
    text-transform: uppercase;
}
.page img {
    width: 33vw;
    height: 25vh;
    content: url(products/android/apps/keyboard/_res/drawable/beta_icon.png);
}

@media(prefers-color-scheme: dark) {
    .page {
        background-image: url(products/android/apps/keyboard/_res/drawable/grass_dark.png);
    }
}



/* Phone portrait */
@media (orientation:portrait) and (max-width: 600px) and (max-height: 992px) {
    .page {
        flex-direction: column-reverse;
        justify-content: center;
        gap: var(--page_padding);
    }
    .page h1 {
        text-align: center;
    }
    .page img {
        width: 75%;
        height: auto;
    }
}



/* Phone landscape */
@media (orientation:landscape) and (max-width: 992px) and (max-height: 600px) {
    .page img {
        width: 25vw;
    }
}