@import url("/_res/style/base_style.css");



.page {
    justify-content: center;
    align-items: center;
    gap: var(--container_foreground_separation);
}
#pilot {
    display: flex;
    align-items: center;
    flex-direction: row;
    
    justify-content: space-around;

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

@media(prefers-color-scheme: dark) {
    #pilot {
        background-image: url(/_res/images/background/grass_dark.png);
    }
}



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



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