@import './global.css';

html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.content {
    height: 100%;
    display: flex;
    max-width: 800px;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    /* outline: 1px solid pink; */
}

.left {
    padding-right: 30px;
    width: 40%;
    margin-bottom: -120px;
    /* outline: 1px solid pink; */
}

.phones {
    width: 100%;
}

.phones img {
    width: calc(100% + 600px);
    margin-left: -400px;
    margin-right: -200px;
    margin-bottom: -170px;
}

.phones .uno {
    display: none;
}

.phones .duo {
    display: block;
}

.right {
    padding-left: 30px;
    width: 60%;
    /* outline: 1px solid pink; */
}

.title {
    margin-bottom: 30px;
    margin-top: 50px;
    width: 100%;
}

.subtitle {
    margin-top: 10px;
    margin-bottom: 20px;
}

.right p {
    font-size: 16px;
}

.stores {
    display: flex;
    position: relative;
    justify-content: space-between;
    padding-top: 14.7367267%;
    background: url(../assets/store-badges.svg) no-repeat;
}

.store {
    width: 50%;
    height: 100%;
    top: 0;
    position: absolute;
    cursor: pointer;
}

.playstore {
    right: 0;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    opacity: 0.7;
}

.footer p {
    font-size: 12px;
}

@media (max-width: 700px) {
    .content {
        padding: 0 20px;
        overflow: hidden;
    }

    .title {
        font-size: 50px;
    }

    .subtitle {
        font-size: 20px;
    }

    .right p {
        font-size: 14px;
    }

    .left {
        padding-right: 10px;
        width: 40%;
    }

    .right {
        padding-left: 10px;
        width: 60%;
    }

    .phones img {
        width: calc(100% + 600px);
        margin-left: -350px;
        margin-right: -100px;
        margin-bottom: -170px;
    }

    .phones .uno {
        display: block;
    }

    .phones .duo {
        display: none;
    }
}
