@import "https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap";

html {
    color-scheme: dark light
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;;
    background: #fff;
    overflow-y: hidden;
    margin: 0;
}

img, picture, svg, video {
    display: block;
    max-width: 100%;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(139, 151, 151, 0.3);
    z-index: 1;
    width: 100vw;
    height: 100%
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 22.5em;
    height: -moz-fit-content;
    height: fit-content;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: hsla(0, 0%, 100%, 1);
    box-shadow: 0 8px 22px -6px #0000001f, 0 14px 64px -4px #0000001f;
    overflow: hidden;
    transition: height .15s;
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(1) translateZ(0px);
    height: 407px;
}

.modal__content {
    width: 100%;
    color: hsla(0, 0%, 8%, 1)
}

.modal__container {
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.PwaModal {
    padding: 3rem 3rem 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 2em;
    position: relative
}

.PwaModal__background {
    background-image: linear-gradient(63.43deg, #46cb44 47.87%, #a6fda4 85.58%, #e7ffe7 103.32%);
    position: absolute;
    z-index: -999;
    top: -50%;
    left: -50%
}

.PwaModal__icon {
    display: block;
    width: 3em;
    background: white;
    width: 4em;
    height: 4em;
    display: grid;
    place-items: center;
    padding: .75em;
    border-radius: 13px;
    box-shadow: 0 8px 32px 17.5px #0000001f
}

.PwaModal__cta {
    display: flex;
    gap: .25em;
    align-items: center;
    position: relative
}

.PwaModal__share-icon {
    display: inline-block;
    position: relative;
    color: rgb(36, 69, 202);
}

.PwaModal__share-icon svg {
    position: relative;
    width: 1.5em;
    height: 1.5em;
    display: inline-block
}

.Text {
    line-height: 130%;
    font-feature-settings: "case" on
}

.Text__large {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -.8px
}

.Text__medium {
    font-size: 14px;
    font-weight: 400;
    line-height: 140%
}

.Text__small {
    font-size: 11px;
    font-weight: 400;
    line-height: 140%
}

#root {
    height: 100vh;
    display: flex;
    flex-direction: column
}

@supports (height: 100dvh) {
    #root {
        height: 100dvh
    }
}