
html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    background: #000000;
}

.wrapper {
    display: block;
    position: relative;
    box-sizing: border-box;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.logo {
    z-index: 1;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;

    opacity: 0;
    animation: .2s ease-in 2s fadeIn forwards;
    -webkit-animation: .2s ease-in 2s fadeIn forwards;
}

@media (max-height: 850px) {
    .logo {
        top: 40px;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.video-bg {
    z-index: 0;
    position: absolute;
    top: -15%;
    left: -15%;
    overflow: visible;
    width: 200px;
    height: 200px;
}
.video-bg .wrapper {
    overflow: visible;
}

.data {
    box-sizing: border-box;
    color: #FFFFFF;
    z-index: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    right: 118px;

    display: flex;
    width: 629px;
    height: fit-content;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;

    opacity: 0;
    animation: .2s ease-in 2.2s fadeInBottom forwards;
    -webkit-animation: .2s ease-in 2.2s fadeInBottom forwards;
}

@keyframes fadeInBottom {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
@-webkit-keyframes fadeInBottom {
    0% {
        opacity: 0;
        top: 60px;
    }
    100% {
        opacity: 1;
        top: 80px;
    }
}

.left-side, .right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
}

.title {
    font-weight: 700;
    font-size: 23px;
    line-height: 27px;
    text-align: center;
    margin-bottom: 8px;
}
.description {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 32px;
}
.qr-code {
    display: block;
    width: 184px;
    height: 184px;
    /** background: url("./imgs/qr-code.svg") center center no-repeat;**/
    margin-bottom: 26px;
    padding: 8px;
    background: white;
    border-radius: 12px;
}

.signature-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

.signature-name {
    display: block;
    width: 83px;
    height: 18px;
    background: url("./imgs/arianee.svg") center center no-repeat;
}

.mention {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    width: fit-content;

    position: absolute;
    bottom: 53px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;

    opacity: 0;
    animation: .2s ease-in 2.2s fadeInBottom forwards;
    -webkit-animation: .2s ease-in 2.2s fadeInBottom forwards;
}

.panel {
    background: #000000;
    opacity: 0.9;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right-side .panel:first-child {
    margin-bottom: 24px;
}

.panel-title {
    display: block;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 8px;
}

.info-description {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

.store-btn {
    display: block;
    width: 168px;
    height: 48px;
    cursor: pointer;
}
.app-store {
    background: url("./imgs/app-store.svg") center center no-repeat;
    margin: 16px 0;
}
.play-store {
    background: url("./imgs/play-store.svg") center center no-repeat;
}

.mention a:hover {
    text-decoration: underline;
    cursor: default;
}

.data--mobile {
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    color: #FFFFFF;
    z-index: 1;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    border-radius: 20px 20px 0 0;
    background: rgba(14, 15, 17, 0.9);
    padding: 24px 16px;

    opacity: 0;
    animation: .2s ease-in 2.2s fadeInBottom forwards;
    -webkit-animation: .2s ease-in 2.2s fadeInBottom forwards;
}

.data--mobile .title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 24px;
}

.data--mobile .description {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 24px;
}

.data--mobile > .signature-name {
    width: 156px;
    height: 34px;
    margin-bottom: 24px;
}

.data--mobile > .store-btn {
    margin-bottom: 24px;
}

.download-link {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    padding: 12px 24px;
    background: #D71D24;
    color: #FFFFFF;
    font-weight: 700;
    border-radius: 20px;
    width: 100%;
    cursor: pointer;
}

@media screen and (max-width: 865px) {
    .logo {
        top: 20px;
    }
    .data {
        visibility: hidden;
    }
    .data--mobile {
        visibility: visible;
    }
    .mention {
        visibility: hidden;
    }
    .video-bg {
        top: -38vw;
        left: 0;
        right: 0;
        margin: auto;
        display: flex;
        justify-content: center;
    }
    .video-bg .wrapper {
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    .video-bg .wrapper .video {
        max-width: 230vw;
        max-height: 110%;
    }
}
