html {
}

body {
    background-color: var(--cream-05, #F5F3EF);
    color: white;
    margin: 0 auto;
    font-family: 'Amazon Ember', Helvetica, sans-serif;
    font-weight: 100;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
}

main > * {
    margin: 25px;
    display: block;
}

main {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

footer {
    position: absolute;
    bottom: 120px;
    color: #000;
    line-height: 36px;
    max-width: 600px;
}

.amazon_logo {
    height: 100px;
}

.spinner {
    height: 80px;
    padding: 35px;
}

.qr-section {
    margin-top: 20px;
}

.qr-text {
    color: #000;
    font-size: 14px;
    margin-bottom: 15px;
}

.stores {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.stores a {
    text-decoration: none;
}

.store_logo {
    height: 50px;
    padding: 0;
}

.qr-codes {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.qr-code-item {
    text-align: center;
}

.qr-code {
    width: 120px;
    height: 120px;
}

.qr-label {
    color: #000;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
}

.message {
    height: auto;
    align-self: stretch;
    color: #000;
    text-align: center;
    font-family: 'Amazon Ember Display', 'Ember Modern Display Standard', 'Amazon Ember', Helvetica, Arial, sans-serif;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    max-width: 100%;
    margin: 0 auto 10px;
    padding: 0 20px;
}

.message br {
    display: block;
}
@media (max-width: 667px) {

    main {
        position: relative;
        top: -50px;
    }

    main > * {
        margin: 15px;
    }

    .amazon_logo {
        height: 40px;
    }

    .spinner {
        height: 60px;
    }

    .message {
        font-size: 28px;
        line-height: 1.3;
        padding: 0 10px;
    }

    .qr-text {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .stores {
        gap: 10px;
        margin-bottom: 15px;
    }

    .store_logo {
        height: 35px;
        padding: 0;
    }

    .qr-codes {
        gap: 20px;
        margin-top: 15px;
    }

    .qr-code {
        width: 80px;
        height: 80px;
    }

    .qr-label {
        font-size: 11px;
        margin-top: 5px;
    }

    footer {
        font-size: 12px;
        line-height: 18px;
        bottom: 10px;
        padding: 25px;
    }
}

.spinner {
    -webkit-animation: rotation .7s infinite linear;
    -moz-animation: rotation .7s infinite linear;
    -o-animation: rotation .7s infinite linear;
    animation: rotation .7s infinite linear;
    transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
}

@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to   {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
    from {-moz-transform: rotate(0deg);}
    to   {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
    from {-o-transform: rotate(0deg);}
    to   {-o-transform: rotate(359deg);}
}
@keyframes rotation {
    from {transform: rotate(0deg);}
    to   {transform: rotate(359deg);}
}

.ground-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
    z-index: -1;
}

.ground-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.side-decoration {
    position: fixed;
    bottom: 50px;
    pointer-events: none;
    z-index: -1;
    margin: 0;
    padding: 0;
}

.side-decoration.left {
    left: 0;
}

.side-decoration.right {
    right: 0;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding-right: 20px;
}

.side-decoration img {
    height: 300px;
    width: auto;
    margin: 0;
    padding: 0;
    display: block;
}

.side-decoration.right img.plant {
    height: 150px;
}

.side-decoration.right img.group15 {
    height: 280px;
}

@media (max-width: 768px) {
    .side-decoration {
        display: none !important;
    }
    
    .side-decoration.left,
    .side-decoration.right {
        display: none !important;
    }
}
