[v-cloak] {
    display: none !important
}

.download-instructions {
    max-width: 450px;
    margin: 0 auto
}

.download-instructions h1 {
    font-weight: 400;
    font-size: 24px;
    line-height: 24px
}

.download-instructions h2 {
    color: #4285f4;
    font-size: 16px
}

.download-instructions__cta {
    margin-bottom: 10px;
    padding: 6px;
    color: #fff;
    background: #4285f4
}

.download-instructions__list {
    padding: 0;
    list-style: none
}

.download-instructions__buttons {
    margin-top: 10px
}

.download-instructions__countdown {
    margin-top: 10px;
    color: red
}

.download-instructions__footer {
    margin-top: 0;
    color: #999
}

.google-play {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.google-play__button {
    margin: 1rem 0 0;
    display: inline-block;
    max-width: 150px
}

.google-play__subline {
    text-align: center;
    font-size: 11px;
    opacity: .6;
    margin: 0 0 .5rem
}

body,
html {
    margin: 0;
    padding: 0
}

* {
    box-sizing: border-box
}

body {
    font-family: Cairo, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.app {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-image: linear-gradient(24deg, #134701cc 10%, #080202e6), url(img/oman-offer2.jpg);
    background-position: center bottom;
    background-size: cover;
    background-attachment: fixed
}

.content {
    background-image: linear-gradient(to top, #a46424b3, #6a2a2a99), url(img/oman-offer2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 1.375rem 1rem #ffffff3d;
    width: 100%;
    min-height: 90vh;
    max-width: 500px;
    text-align: center;
    display: grid;
    place-content: center;
    border: 10px solid rgba(0, 0, 0, .75)
}

h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 2rem
}

.button {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: transform .2s, background-color .2s;
    border: none;
    cursor: pointer;
    margin: 1rem 0
}

.button:hover {
    background: #f85b56;
    transform: scale(1.05)
}

.emoji {
    font-size: 2.25rem;
    margin-bottom: 0
}

.bounce {
    animation: bounce 1.5s infinite ease-in-out
}

@media (max-width: 480px) {
    .content {
        padding: 1.5rem
    }
    h2 {
        font-size: 1.5rem
    }
    .button {
        padding: .8rem 1.6rem;
        font-size: 1rem
    }
}

@keyframes bounce {
    0%,
    to {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-10px)
    }
}