* {
    box-sizing: border-box;
}
html,body{
    margin: 0;
    height: 100vh;
    background-image: url(../img/app-bg.jpeg);
    background-size: cover;        /* მთავარი ნაწილი */
    background-position: center;   /* ცენტრში დაალაგებს */
    background-repeat: no-repeat;  /* არ გაიმეორებს */
}
section{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    min-height: 100vh;
    justify-content: center;   /* ეს ჩამოსვამს შუაში */
}
img{
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}
a,
a:visited,
a:hover,
a:active,
a:focus {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

a:focus,
a:active {
    box-shadow: none;
    outline: none;
}
.main{
    display: flex;
    flex: 1;
    align-items: center;       /* left და right შიგნით ერთ ხაზზე */
    justify-content: center;   /* ორივე ბლოკი ერთად შუაში */
    gap: 40px;
}
.main .left{
    display: flex;
    flex-direction: column;
    width: 50%;
    min-width: 0;
}
.main .left .qrcode{

}
.main .left .qrcode img{

}
.main .left .download{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.main .left .download a{

}
.main .left .download a img{

}
.main .right{
    display: flex;
    flex-direction: column;
    width: 50%;
    min-width: 0;
}
.main .right img{

}
.google{
    margin-right: 10px;
}
.store{
    margin-left: 10px;
}
@media (max-width: 767px) {
    .main{
        flex-direction: column;
    }
    .main .left,.main .right{
        width: 100%;
    }
    .main .left{
        position: absolute;
        max-width: 270px;
        z-index: 1;
        top: 22vh;
    }
}
@media (max-width: 467px) {
    .main {
        flex-direction: column;
        justify-content: flex-start;
        padding-top:20px;
    }
    .main .left{
        position: absolute;
        max-width: 260px;
        z-index: 1;
        top: 22vh;
    }
}
