
#app {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    color: #2c3e50;
    margin-top: 36px;
}
  
.app-icon {
    width: 40%;
    max-width: 120px;
    height: auto;
    border-radius: 16px;
}
  
.root {
    font-size: 1em;
    padding: 0 15%;
    margin-right: 5%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.app-info {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.subtitle {
    font-size: 1em;
    opacity: 0.8;
    margin-top: -16px;
}

.store {
    height: 42px;
    width: auto;
    cursor: pointer;
}

.screenshot {
    width: 32%;
    height: auto;
    rotate: 7deg;
    margin-top: 25px;
    margin-bottom: 64px;
}

.copy-right {
    font-size: 0.8em;
    color: rgba(0, 0, 0, 0.5);
}

.warning-label {
    font-size: 0.8em;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 12px;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
}

.install-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin-top: 24px;
    width: 100%;
    margin-bottom: 32px;

    .app-install-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        .qrcode {
            width: 160px;
            height: auto;
            padding: 8px;
            border-radius: 24px;
            box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.15);
            margin-top: 16px;
        }
    }
}

.android {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    background-color: #6280DF;
    padding: 0px 6px;
    border-radius: 4px;
    margin-left: 24px;
}

.android > label {
    color: white;
    font-size: 0.9em;
    font-weight: 600;
    margin-right: 6px;
}

@media (max-width: 1025px) {
    .root {
        font-size: 1em;
        padding: 0 5%;
        display: flex;
        margin-right: 0;
        flex-direction: column;
        align-items: center;
    }

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

    .store {
        height: 36px;
    }

    .qrcode {
        display: none;
    }

    .screenshot {
        width: 60%;
        height: auto;
        rotate: 0deg;
        margin-top: 25px;
        margin-bottom: 64px;
    }

    .footer {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: none;
        left: 0;
    }
}