*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    height: 100%;
    min-height: 100vh;
    font-family: Roboto, sans-serif;
    color: #000;
    padding: 0;
    margin: 0;
    background-color: #7a4ae5;
    background-image: url(/images/background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    @media (max-width: 768px) {
        background-image: url(/images/mob-background.png);
    }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    height: 100vh;
}

.appstore {
    width: 120px !important;
    display: block !important;
}

.mobile-content-wrapper {
    display: none;

    @media (max-width: 1024px) {
        display: flex;
    }

    padding: 24px 24px 0 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-content-wrapper .description {
    text-align: center;
    font-size: 24px;
    line-height: 32px;
}

.mobile-content-wrapper img {
    margin-top: 16px;
    width: 70%;
}

.mobile-content-wrapper .mob-phones-img {
    height: 57dvh;
    width: auto;

    @media (orientation: landscape) {
        height: 45dvh;
    }

    @media (max-width: 1024px) and (orientation: landscape) {
        display: none;
    }
}

.desktop-content-wrapper {
    width: 1159px;
    display: flex;
    justify-content: space-between;
    gap: 120px;

    @media (max-width: 1024px) {
        display: none;
    }
}

.desktop-content-wrapper .left {
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
}

.desktop-content-wrapper .left .description {
    text-align: left;
    font-size: 32px;
    line-height: 46px;
    margin-top: 80px;
    margin-bottom: 40px;
}

.desktop-content-wrapper .left .download {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.desktop-content-wrapper .left .download p {
    font-size: 16px;
    line-height: 20px;
}

.desktop-content-wrapper .right {
    width: 480px;
    height: 100%;
}

.footer {
    display: flex;
    padding: 16px;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
}

.footer .email {
    color: #000
}
