/*
 * Copyright © 2022 Krafted Bytes, all rights reserved
 */

.landscape-image {
    width: 600px;
}

@media screen and (max-width: 600px) {
    .landscape-image {
        width: 80%;
    }
}

.portrait-image {
    width: 300px;
}

.features {
    display: flex;
    flex-direction: column;
}

.feature {
    width: 800px;
    padding: 2rem 0;
}

@media screen and (max-width: 800px) {
    .feature {
        width: 100%;
        padding: 2rem 0;
    }
}

.description-block {
    font-weight: 600;
}

@media screen and (max-width: 800px) {
    .description-block {
        width: 92%;
    }
}

.main-features-block {
    padding-left: 2rem;
}

@media screen and (max-width: 600px) {
    .main-features-block {
        margin-top: 1rem;
    }
}

.feature-entry {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.first-feature-entry {
    background-color: var(--main-background-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.links {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 800px;
}

@media screen and (max-width: 800px) {
    .links {
        width: 100%;
    }
}

.google-play-logo {
    height: 70px;
    margin: 0 1rem;
}

.google-play-logo-adjusted {
    height: 60px;
    margin: 0 1rem;
}

.second-feature-entry {
    display: flex;
}

@media screen and (max-width: 600px) {
    .second-feature-entry {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: row-reverse;
    }
}

.centered {
    display: flex;
    justify-content: center;
}
