* {
    box-sizing: border-box
}

html {
    min-height: 100%
}

body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
    height: 100%;
    margin: 0
}

.app {
    min-height: 100vh;
    width: 100%
}

.header {
    align-items: center;
    background-color: #fff;
    display: flex;
    padding: 10px 20px;
    width: 100%
}

.header__logo {
    height: 30px
}

.header__hamburger {
    margin-left: auto;
    width: 20px
}

.heading {
    font-size: 32px;
    margin-bottom: 10px;
    margin-top: 0;
}

.paragraph {
    font-size: 18px
}

.content {
    height: 100%;
    min-height: 400px;
    padding: 20px;
    text-align: center
}

.prize {
    background: linear-gradient(0deg, #f3f3f3, #fff);
    margin-bottom: 30px;
    margin-left: -20px;
    margin-right: -20px;
    padding: 20px
}

.prize__image {
    margin-bottom: 20px;
    max-width: 200px;
    width: 100%
}

.button {
    -webkit-animation: zoom-in-and-out 1s ease-in-out infinite;
    animation: zoom-in-and-out 1s ease-in-out infinite;
    background-color: #0095f6;
    border: 0;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    padding: 15px;
    text-decoration: none
}

.footer-text {
    display: inline-block;
    font-size: 14px;
    font-style: italic;
    margin-top: 30px;
    opacity: .6
}

@-webkit-keyframes zoom-in-and-out {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.12)
    }

    to {
        transform: scale(1)
    }
}

@keyframes zoom-in-and-out {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.12)
    }

    to {
        transform: scale(1)
    }
}

.theme--instagram .header {
    border-bottom: 1px solid #dbdbdb
}

.theme--twitter .header {
    background-color: #36a1f2;
    color: #fff
}

.theme--twitter .button {
    border-radius: 25px;
    padding: 15px 25px
}

.theme--pinterest .button {
    background-color: #e61b21;
    border-radius: 25px
}

.theme--spotify .header {
    background-color: #000;
    color: #fff
}

.theme--spotify .button {
    background-color: #1db954;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase
}

.theme--tiktok .header {
    border-bottom: 1px solid #d7e0e1;
    padding: 18px 23px
}

.theme--tiktok .header__logo {
    height: 40px
}

.theme--tiktok .button {
    background-color: #fe2c55;
    border-radius: 0
}

.theme--snapchat .button {
    background-color: #000;
    border-radius: 0
}

.theme--youtube .header__logo {
    height: 20px
}

.theme--youtube .button {
    background-color: #065fd4;
    border-radius: 2px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 25px;
    text-transform: uppercase
}

.theme--amazon .header {
    background-color: #131921;
    color: #fff;
    padding: 20px
}

.theme--amazon .button {
    background: linear-gradient(180deg, #fbd773, #fbd978 40%, #fbcf56 41%, #fac228);
    border: 1px solid #e6a402;
    border-radius: 3px;
    color: #000;
    text-shadow: 0 1px 0 #ffe093
}

.theme--alibaba .button {
    background-color: #ff7519;
    color: #fff
}

.theme--reddit .header {
    border-bottom: 1px solid #edeff1
}

.theme--reddit .button {
    background-color: #0079d3;
    border-radius: 25px;
    color: #fff
}

/*# sourceMappingURL=app.css.map*/